full_name
stringlengths
7
104
description
stringlengths
4
725
topics
stringlengths
3
468
readme
stringlengths
13
565k
label
int64
0
1
berndruecker/ticket-booking-camunda-8
A ticket booking example using Camunda Cloud, RabbitMQ, REST and two sample apps (Java Spring Boot and NodeJS)
null
# Ticket Booking Example ![Ticket Booking Process](booking-service-java/src/main/resources/ticket-booking.png) A ticket booking example using * Camunda Platform 8, * RabbitMQ, * Java Spring Boot App * NodeJS App ![Architecture Overview](architecture.png) # How To Run <a href="http://www.youtube.com/watch?feature=player_embedded&v=m3MYuRKLZa8" target="_blank"><img src="http://img.youtube.com/vi/m3MYuRKLZa8/0.jpg" alt="Walkthrough" width="240" height="180" border="10" /></a> ## Run RabbitMQ locally ``` docker run -p 15672:15672 -p 5672:5672 rabbitmq:3-management ``` * http://localhost:15672/#/queues/ * User: guest * Password: guest ## Create Camunda Platform 8 SaaS Cluster * Login to https://camunda.io/ * Create a new cluster * When the new cluster appears in the console, create a new set of API client credentials. * Copy the client credentials into * Java App `booking-service-java/src/main/resources/application.properties` * Node App `fake-services-nodejs/.env` ## Run NodeJs Fake Services If you want to understand the code, please have a look into this get started tutorial: https://github.com/camunda/camunda-platform-get-started/tree/main/nodejs ``` cd fake-services-nodejs npm update ts-node src/app.ts ``` ## Run Java Ticket Booking Service If you want to understand the code, please have a look into this documentation: https://github.com/camunda/camunda-platform-get-started/tree/main/spring ``` mvn package exec:java -f booking-service-java\ ``` ## Test ``` curl -i -X PUT http://localhost:8080/ticket ``` Simulate failures by: ``` curl -i -X PUT http://localhost:8080/ticket?simulateBookingFailure=seats curl -i -X PUT http://localhost:8080/ticket?simulateBookingFailure=ticket ```
1
Pivotal-Open-Source-Hub/geode-demo-application
A sample of how Apache Geode can be used a low latency, horizontally scalable data source
null
# geode-demo-application This is an example of: * Starting and managing a Spring Configured Geode Cluster * Application(s) containing a Geode client that use Geode as a data store or leverage its compute capabilities There are two ways to run this demo: 1. Single Node Stand Alone Mode 2. Geode Cluster Running On AWS ## Single Node Stand-Alone Mode ### Introduction With this option all artifacts can be downloaded to run a Geode cluster as well as the sample application on Mac OSX or Linux machine. There is no support for Windows at this time. ### Prerequisites 1. All scripts to run the samples are written in Bash, as a result the target machine needs to be Mac OSX or Linux 2. Java JDK 1.7+ (Oracle is recommended) needs to be installed on the machine, and the JAVA_HOME variable should be set 3. Port 8080 is free for the demo application to run on (if port 8080 is not free the application can be configured to use another port, however its default in 8080) ### Set Up 1. Download and uncompress the project zip geode-demo-application-master.zip 2. `cd` into the directory geode-demo-application-master/demo/single-machine-mode 3. All scripts to run the demo and any dependencies are found in this folder ```shell geode-demo-application-master$ cd demo/single-machine-mode single-machine-mode$ ls checkIfDemoIsRunning.sh client-apps fastfootshoes startDemo.sh startTransactions.sh stopRetailApp.sh cleanUp.sh derby-server startApp.sh startDerby.sh stopDemo.sh single-machine-mode$ ``` 4. Ensure all *.sh scripts are executable ```shell single-machine-mode$ chmod +x *.sh ``` To run the demo you will need 2 terminal sessions open. These will be for 1. Running the Derby database. The cluster will use this for Write Through operations 2. Running the Geode Cluster, Demo Application and Transaction Simulator ### Starting The Cluster 1. If JAVA_HOME has not been set the `setJDK.sh` script can be run. It will look for a JDK version 1.7 to add to JAVA_HOME. It will look in the /usr/libexec/java_home folder. If JAVA_HOME is already set, this step can be skipped. 2. Execute ./startDemo.sh which will * Start Derby DB * Start a Geode cluster with 2 locators and 4 servers, on 127.0.0.1 * Start a Spring Boot application that will connect to the cluster in step 1, and generate historic data The follow messages will appear in a successful start (log output shortened for brevity): This first part will show the members starting up and their classpaths ```shell single-machine-mode$ ./startDemo.sh Ensure that startDerby.sh has been run in a seperate window before running the demo Is derby running? (type Y to confirm): Y Starting Cluster Starting Up: Locator A, Locator B and Server A, Server B, Server C and Server D with the FastFoot Shoes Grid Configuration ............................. Locator in /Users/lshannon/Downloads/geode-demo-application-master/demo/geode-server-package/locatorA on 127.0.0.1[10334] as locatorA is currently online. Process ID: 22092 Uptime: 15 seconds GemFire Version: 1.0.0.0-SNAPSHOT Java Version: 1.7.0_71 Log File: /Users/lshannon/Downloads/geode-demo-application-master/demo/geode-server-package/locatorA/locatorA.log JVM Arguments: -Dgemfire.enable-cluster-configuration=false -Dgemfire.load-cluster-configuration-from-dir=false -Dgemfire.log-level=config -Xms256m -Xmx256m -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=15666 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.local.only=false -Dgemfire.launcher.registerSignalHandlers=true -Djava.awt.headless=true -Dsun.rmi.dgc.server.gcInterval=9223372036854775806 Class-Path: /Users/lshannon/Downloads/geode-demo-application-master/demo/geode-server-package/geode-1.0.0.0-SNAPSHOT/lib/gemfire-core-1.0.0.0-SNAPSHOT.jar:/Users/lshannon/Downloads/geode-demo-application-master/demo/geode-server-package/geode-1.0.0.0-SNAPSHOT/lib/gemfire-core-dependencies.jar Successfully connected to: [host=10.74.19.156, port=1099] ... more messages like this as the rest of the members start up... ``` After the members have started a message from gfsh will show the members: ```shell (1) Executing - connect Connecting to Locator at [host=localhost, port=10334] .. Connecting to Manager at [host=192.168.98.158, port=1099] .. Successfully connected to: [host=192.168.98.158, port=1099] (2) Executing - list members Name | Id -------- | ----------------------------------------------------------- serverC | Luke-Shannons-Macbook-Pro(serverC:68598)<v4>:6908 locatorA | Luke-Shannons-Macbook-Pro(locatorA:68544:locator)<v0>:10231 serverB | Luke-Shannons-Macbook-Pro(serverB:68585)<v3>:29758 serverA | Luke-Shannons-Macbook-Pro(serverA:68573)<v2>:36452 serverD | Luke-Shannons-Macbook-Pro(serverD:68610)<v5>:39490 locatorB | Luke-Shannons-Macbook-Pro(locatorB:68561:locator)<v1>:60760 ``` Next the Spring Boot application will start and connect as a cluster to the cluster to put in historic data. ```shell Loading Historic Data . ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ :: Spring Boot :: (v1.2.2.RELEASE) 2015-07-29 11:34:53.610 INFO 68623 --- [ main] o.a.g.d.f.dataloader.Application : Starting Application v0.0.1-SNAPSHOT on Luke-Shannons-Macbook-Pro.local with PID 68623 (/Users/lshannon/Downloads/geode-demo-application-master/scripts/app/ShoeDataLoader-0.0.1-SNAPSHOT.jar started by lshannon in /Users/lshannon/Downloads/geode-demo-application-master/scripts) 2015-07-29 11:34:53.652 INFO 68623 --- [ main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@4e4574df: startup date [Wed Jul 29 11:34:53 EDT 2015]; root of context hierarchy 2015-07-29 11:34:54.115 INFO 68623 --- [ main] o.s.b.f.xml.XmlBeanDefinitionReader : Loading XML bean definitions from class path resource [client-cache.xml] [info 2015/07/29 11:34:54.842 EDT <main> tid=0x9] --------------------------------------------------------------------------- Copyright (C) 1997-2014 Pivotal Software, Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual property laws. Pivotal products are covered by one or more patents listed at http://www.gopivotal.com/patents. Pivotal is a registered trademark of trademark of GoPivotal, Inc. in the United States and/or other jurisdictions. All other marks and names mentioned herein may be trademarks of their respective companies. --------------------------------------------------------------------------- .... ``` As the Boot Application loads data there will be messages that look like stack traces, these are infact messages generated as the objects are serialized into Geode and are totally normal: ```shell Started loading the products [info 2015/07/29 11:34:56.156 EDT <main> tid=0x9] Auto serializer generating type for class org.apache.geode.demo.fastfootshoes.model.Product for fields: stockOnHand: private int org.apache.geode.demo.fastfootshoes.model.Product.stockOnHand wholeSalePrice: private double org.apache.geode.demo.fastfootshoes.model.Product.wholeSalePrice size: private double org.apache.geode.demo.fastfootshoes.model.Product.size brand: private java.lang.String org.apache.geode.demo.fastfootshoes.model.Product.brand name: private java.lang.String org.apache.geode.demo.fastfootshoes.model.Product.name type: private java.lang.String org.apache.geode.demo.fastfootshoes.model.Product.type color: private java.lang.String org.apache.geode.demo.fastfootshoes.model.Product.color gender: private java.lang.String org.apache.geode.demo.fastfootshoes.model.Product.gender id: private java.lang.String org.apache.geode.demo.fastfootshoes.model.Product.id ``` The final message is a summary of the data that was loaded. ```shell ************************************************************* ********************DATA LOADING SUMMARY********************* ************************************************************* Customers: Records Read: 1000 Records Added To GemFire: 1000 Products: Records Read: 1000 Records Added To GemFire: 1000 Transactions: Records Read: 10000 Records Added To GemFire: 10000 Mark Ups: Records Read: 6 Records Added To GemFire: 6 Total Loading Time: 10 seconds ************************************************************* ********************ERROR LOGS******************************* ************************************************************* No errors were recorded ************************************************************* **********Loading Completed********** **********Press Enter To Exit********** ``` Press enter to exit. 3. Execute `startTransactionSimulator.sh` to begin simulating transactions against the cluster. ``` single-machine-mode$ ./startTransactionSimulator.sh Starting Transactions ... ``` ### Starting the Demo Application 1. Run the `startClientApp.sh` script in another terminal window 2. This will start a Spring Boot Application that connects to the cluster and a client and demonstrates some of the functionality of Geode The final message in the window should show that the application has started and is listening on port 8080 ```shell HandlerMapping : Mapped "{[/dump],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke() 2015-07-29 11:47:26.914 INFO 68731 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup 2015-07-29 11:47:26.921 INFO 68731 --- [ main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase 0 2015-07-29 11:47:27.062 INFO 68731 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http) 2015-07-29 11:47:27.064 INFO 68731 --- [ main] o.a.g.d.f.application.Application : Started Application in 5.246 seconds (JVM running for 5.677) ``` The application should now be started and can be tested by loading http://127.0.0.1:8080 in a browser. ![demo application](/images/demo-application-home.png) ### Starting the Cluster and Client App Manually #### Cluster ```shell geode-demo-application-master$ cd demo/geode-server-package geode-server-package$ ./startCluster.sh 127.0.0.1 ``` The parameter is the IP address of the locators. #### Historic Data (Initializing inventory data) ```shell geode-demo-application-master$ cd demo/geode-server-package/app app$ java -jar FastFootShoesHistoricDataLoader-0.0.1-SNAPSHOT.jar ```` #### Client app ```shell geode-demo-application-master$ cd demo/geode-server-package/app app$ java -jar FastFootShoesRetail-0.0.1-RELEASE.jar --cluster.location=127.0.0.1 [--server.port=8080] ``` Use the same IP address for the `cluster.location` as when starting the cluster. #### Transactions ```shell geode-demo-application-master$ cd demo/geode-server-package/app app$ java -jar FastFootShoesTransactionSimulator-0.0.1-SNAPSHOT.jar --server.port=8383 ``` ### Shutdown ``` single-machine-mode$ ./stopDemo.sh Stopping Derby DB Stopping the Cluster (1) Executing - connect Connecting to Locator at [host=localhost, port=10334] .. Connecting to Manager at [host=dx141.tor.pivotallabs.com, port=1099] .. Successfully connected to: [host=dx141.tor.pivotallabs.com, port=1099] (2) Executing - shutdown --include-locators=true Shutdown is triggered Press any key to close this window... ``` ### Non-Graceful Full Teardown If a situation arises were processes and running and the shutdown script is not working, run the interactiveShutdown.sh script. If there are Locators and Servers running it will list the PID(s) and offer a prompt to kill these processes. ```shell single-machine-mode$ ./interactiveShutdown.sh Locators Running: 22092 22108 Servers Running: 22121 22134 22147 22160 Would you like to kill these processes? ('Y' to kill) Y Locators have been killed Servers have been killed single-machine-mode$ ``` Entering a 'Y' at the prompt will kill all these processes. ## Geode Cluster Running On AWS This demonstration uses two Amazon Linux EC2 instances. One acts as the client, and one acts as the Geode cluster. Start by creating two high-memory instances in the AWS console. ### Instance Setup In order for this demo to run correctly, specific ports need to be opened on at least the cluster instance. Open the following port range within the security group settings for the instance(s): ``` Protocol: TCP Range: 1024-65535 Protocol: TCP Port: 22 ``` For the client app instance, the following ports are sufficient: ``` Protocol: TCP Port: 22 Protocol: TCP Port: 80 ``` ### Using provided AMIs There are two AMIs provided to assist with running the demo on two EC2 instances: * Client: * Cluster: ### Using the distribution package 1. Upload the `geode-server-package` to a suitable high-memory EC2 instance ```shell $ cd demo $ scp -r -i <certificate.pem> geode-server-package ec2-user@<instance location>: ``` 2. Upload the client app on the other instance ```shell $ scp -i <certificate.pem> geode-server-package/app/FastFootShoesRetail-0.0.1-RELEASE.jar ec2-user@<instance location>: ``` #### On the instance designated to be the cluster ```shell $ cd ~/geode-server-package $ ./startDerby $ ./startCluster <public DNS for EC2 instance eg. ec2-xxx-xxx-xxx-xxx.compute-1.amazonaws.com> ... $ ./addHistoricData.sh ... <enter> $ ./startTransactionSimulator.sh ``` The log file for the transaction simulator is written in the same directory. ##### Shut down the cluster ``` $ ./stopCluster.sh ``` #### On the instance designated to be the client ```shell $ sudo java -jar FastFootShoesRetail-0.0.1-RELEASE.jar --server.port=80 --cluster.location=<public DNS for EC2 instance above. eg. ec2-xxx-xxx-xxx-xxx.compute-1.amazonaws.com> ``` Visit the demo app in your browser via the public address of the client instance.
1
lemonlabs/u2020-mortar
[DEPRECATED] Port of Jake Wharton's U2020 sample app with use of Mortar & Flow + couple more examples
null
U+2020 mortar ============ Disclaimer: Mortar & Flow have evolved since this project was created. It will be updated when we've completely decided what to do with the libraries. Port of Jake Wharton's U+2020 sample app with use of Mortar &amp; Flow + couple more examples. This is more of a kitchen sink of things we are trying with Mortar&Flow. Use as a base for a project at your own risk. Ideas and PRs are welcome. * [Jake Wharton's U2020](https://github.com/JakeWharton/u2020) * [Square's Mortar](https://github.com/square/mortar) * [Square's Flow](https://github.com/square/flow)
1
wbingli/maven-s3-repo
A sample project of how to use S3 as Maven repository
null
AWS S3 Maven Repository ======================= This project demonstrates how to use AWS S3 as maven repository. [AWS Maven Wagon](https://github.com/spring-projects/aws-maven) plugin is used. Demo Projects ============= ## s3 This project is a sample maven project. It's configured to be published to S3 based repository. It is used to demonstrate maven artifacts publish to S3 based repository. ## s3-test This project depends on **s3** project. It is used to demonstrate resolving dependencies using S3 based repository with an `s3://` schema. ## s3-http-test This project also depends on **s3** project. It's also used to demonstrate resolving dependencies using S3 based repository, but directly with `http://` schema. Configuration ============= ## Local AWS Account Settings S3 access keys should be configured under `~/.m2/settings.xml`. <settings> <servers> <server> <id>aws-release</id> <username>AKIAIC5IC111111111</username> <password>ACF1111111111111111111111111111111</password> </server> <server> <id>aws-snapshot</id> <username>AKIAIC5IC111111111</username> <password>ACF1111111111111111111111111111111</password> </server> </servers> </settings> ## AWS Account Permissions Proper AWS account permissions need to be granted to allow the account to write and read objects from S3. They are required to publish artifacts to S3 or download artifacts via `s3://` schema. You may use _AmazonS3FullAccess_ policy template for this permission. ## Use HTTP Schema for S3 Repository If you want to use `http://` schema as maven repository, S3 bucket need to be configured as below: ### Enable website hosting Only enable this, you can access S3 via HTTP. Just go to S3 console, and enable **Static Website Hosting**. Put _index.html_ in **Index Document** as it's required to have one. ### Configure Bucket Policy You need to configure bucket policy so that those artifacts could be accessable. Example as below: { "Id": "Policy1397027253868", "Statement": [ { "Sid": "Stmt1397027243665", "Action": [ "s3:ListBucket" ], "Effect": "Allow", "Resource": "arn:aws:s3:::wbinglee-so-s3", "Principal": { "AWS": [ "*" ] } }, { "Sid": "Stmt1397027177153", "Action": [ "s3:GetObject" ], "Effect": "Allow", "Resource": "arn:aws:s3:::wbinglee-so-s3/*", "Principal": { "AWS": [ "*" ] } } ] }
1
HMS-Core/huawei-account-demo
Sample code for quickly integrate Huawei ID. HUAWEI Account Kit provides developers with simple, secure, and quick sign-in and authorization functions.
account authorization hms huawei sign-in signout
# HMS Core Account Kit Sample Code English | [中文](README_ZH.md) ## Contents * [Introduction](#Introduction) * [Installation](#Installation) * [Environment Requirements](#Environment-Requirements) * [Configuration](#Configuration) * [Sample Code](#Sample-Code) * [Result](#Result) * [Technical Support](#Technical-Support) * [License](#License) ## Introduction The sample code for Android encapsulates the server-side APIs of Account Kit, containing multiple demo apps for your reference or direct use. The sample code offers: **hmssample**: sample code package, which implements the following functions: sign-in, authorized sign-in, and sign-out **logger**: records logs. ## Installation To use capabilities offered in the sample code, make sure that HMS Core (APK) 4.0 has been installed on your device. ## Environment Requirements Android SDK version: 23 or later JDK version: 1.8 or later ## Configuration Parameters in **Contant.java** include: **CLIENT_ID**: app ID, which can be obtained from AppGallery Connect **CERT_URL**: public key. To get it, obtain the public key URI from **jwks_uri** and then access this URI. **ID_TOKEN_ISSUE**: same as the value of **iss** in the ID token ## Sample Code The Java sample code for the server-side shows how to implement the following functions: 1. Use the authorization code to obtain the access token in **TokenAPIDemo.java**. 2. Use the public key to verify the ID token in **IDTokenAPIDemo.java**. 3. Parse the access token in **GetTokenInfoAPIDemo.java**. The Java sample code for the client-side shows how to implement the following functions: 1. Sign-in in ID token mode. 2. Sign-in in authorization code mode. 3. Silent sign-in. 4. Sign-out from an ID. 5. Authorization revocation. Service logic: Implement sign-in in ID token mode and authorization code mode in [AccountActivity.java](https://github.com/HMS-Core/huawei-account-demo/blob/master/Account-Client-Java-Demo/Account_Demo_AndroidStudio/app/src/main/java/com/huawei/hmssample/AccountActivity.java). ## Result The server-side Java sample code prints the access token and JSON Web Token. ## Technical Support You can visit the [Reddit community](https://www.reddit.com/r/HuaweiDevelopers/) to obtain the latest information about HMS Core and communicate with other developers. If you have any questions about the sample code, try the following: * Visit [Stack Overflow](https://stackoverflow.com/questions/tagged/huawei-mobile-services?tab=Votes), submit your questions, and tag them with `huawei-mobile-services`. Huawei experts will answer your questions. * Visit the HMS Core section in the [HUAWEI Developer Forum](https://forums.developer.huawei.com/forumPortal/en/home?fid=0101187876626530001?ha_source=hms1) and communicate with other developers. If you encounter any issues when using the sample code, submit your [issues](https://github.com/HMS-Core/huawei-account-demo/issues) or submit a [pull request](https://github.com/HMS-Core/huawei-account-demo/pulls). ## License The sample code is licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0).
1
HMS-Core/hms-AREngine-demo
Huawei AREngine kit sample code demonstrates how to use Huawei AR functions, including motion tracking, plane detection, face recognition and gesture recognition, etc.
null
# HUAWEI AR Engine Demo ## Table of Contents * [Introduction](#introduction) * [Getting Started](#getting-started) * [Supported Environments](#supported-environments) * [Result](#result) * [License](#license) ## Introduction The HwAREngineDemo program demonstrates how to use HUAWEI AR Engine. For more development details, please refer to the following link: [HUAWEI AR Engine](https://developer.huawei.com/consumer/en/hms/huawei-arengine/?ha_source=hms1) ## Getting Started 1. Register a [HUAWEI account](https://developer.huawei.com/consumer/?ha_source=hms1). 2. Check whether the Android studio development environment is ready. Open the sample code project directory with file "build.gradle" in Android Studio. Run HwAREngineDemo on your divice which have installed latest HUAWEI AR Engine Service. 3. To build this demo, please first import the demo in the Android Studio (3.x+). 4. Run the sample on your Android device. ## Supported Environments JDK version >= 1.8 is recommended. ## Result After successful compilation and installation, you can experience the ARWorld, ARFace, ARBody and ARHand capabilities of arengine. ## Question or issues If you want to evaluate more about HMS Core, [r/HMSCore on Reddit](https://www.reddit.com/r/HuaweiDevelopers/) is for you to keep up with latest news about HMS Core, and to exchange insights with other developers. If you have questions about how to use HMS samples, try the following options: - [Stack Overflow](https://stackoverflow.com/questions/tagged/huawei-mobile-services) is the best place for any programming questions. Be sure to tag your question with `huawei-mobile-services`. - [Huawei Developer Forum](https://forums.developer.huawei.com/forumPortal/en/home?fid=0101187876626530001?ha_source=hms1) HMS Core Module is great for general questions, or seeking recommendations and opinions. If you run into a bug in our samples, please submit an [issue](https://github.com/HMS-Core/hms-AREngine-demo/issues) to the Repository. Even better you can submit a [Pull Request](https://github.com/HMS-Core/hms-AREngine-demo/pulls) with a fix. ## License HwAREngineDemo is licensed under the [Apache License, version 2.0](http://www.apache.org/licenses/LICENSE-2.0).
1
aliyun/alibabacloud-kms-demo
Alibaba Cloud KMS Sample Code for Java, Go and Python
aliyun go java kms python
# KMS开放API及最佳实践多语言样例 密钥管理服务(Key Management Service,简称KMS)提供密钥的安全托管及密码运算等服务。KMS内置密钥轮转等安全实践,支持其它云产品通过一方集成的方式对其管理的用户数据进行加密保护。借助KMS,您可以专注于数据加解密、电子签名验签等业务功能,无需花费大量成本来保障密钥的保密性、完整性和可用性。 产品官网:[官网](https://www.aliyun.com/product/kms) KMS控制台:[控制台](https://kms.console.aliyun.com/) 官方文档:[帮助文档](https://help.aliyun.com/product/28933.htm) 在线API调试:[在线调试](https://api.aliyun.com/#/?product=Kms) KMS SDK下载:[SDK地址](https://help.aliyun.com/document_detail/28956.html) ### 一、KMS开放API及最佳实践多语言样例 使用Java、Go、Python语言实现KMS已开放接口的使用样例以及加解密最佳实践样例。 - Java实现的对应目录:[kms-samples-java](./kms-samples-java) - Go实现的对应目录:[kms-samples-go](./kms-samples-go) - Python实现的对应目录:[kms-samples-python](./kms-samples-python) ### 二、样例代码组成 | 样例 | 描述 | [Java](./kms-samples-java) | [Go](./kms-samples-go) | [Python](./kms-samples-ptyhon) | |:----------|:----------|:----------|:----------|:----------| | API测试 | 对阿里云KMS接口的测试代码 | [接口测试代码](./kms-samples-java/src/test/java/com/aliyun/kms/samples/OpenApiTest.java) |[接口测试代码](./kms-samples-go/kms_api_samples) | [接口测试代码](./kms-samples-python/test_openapi.py) | | 直接加密 | [使用主密钥对数据进行加密解密操作](https://help.aliyun.com/document_detail/131084.html) | 主密钥[加密](./kms-samples-java/src/main/java/com/aliyun/kms/samples/CmkEncrypt.java), [解密](./kms-samples-java/src/main/java/com/aliyun/kms/samples/CmkDecrypt.java) | 主密钥[加密](./kms-samples-go/cmk_encrypt_best_practices), [解密](./kms-samples-go/cmk_decrypt_best_practices)| 主密钥[加密](./kms-samples-python/cmk_encrypt.py), [解密](./kms-samples-python/cmk_decrypt.py) | | 信封加密 | [使用主密钥生成一个数据密钥,<br>再使用数据密钥在本地加解密数据](https://help.aliyun.com/document_detail/131058.html) | 信封[加密](./kms-samples-java/src/main/java/com/aliyun/kms/samples/EnvelopeEncrypt.java), [解密](./kms-samples-java/src/main/java/com/aliyun/kms/samples/EnvelopeDecrypt.java) | 信封[加密](./kms-samples-go/envelope_encrypt_best_practices), [解密](./kms-samples-go/envelope_decrypt_best_practices) | 信封[加密](./kms-samples-python/envelope_encrypt.py), [解密](.//kms-samples-python/envelope_decrypt.py) | | 数字签名 | [使用非对称CMK生成数字签名以及验证签名的场景](https://help.aliyun.com/document_detail/148146.html) | [数字签名](./kms-samples-java/src/main/java/com/aliyun/kms/samples/AsymmetricKey.java) | [ECC](./kms-samples-go/asymmetric_ecdsa_p256_samples), [RSA](/kms-samples-go/asymmetric_rsassa_samples) | [数字签名](./kms-samples-python/asymmetric.py) | | 非对称加密 | [使用非对称CMK进行数据加密和解密的场景](https://help.aliyun.com/document_detail/148145.html) | [非对称加密](./kms-samples-java/src/main/java/com/aliyun/kms/samples/AsymmetricKey.java) | [RSA](./kms-samples-go/asymmetric_rsaes_samples) | [非对称加密](./kms-samples-python/asymmetric.py) | | 导出数据密钥 | [基于公钥保护导出数据密钥](https://help.aliyun.com/document_detail/176818.html) | [ExportDataKeyDemo](./kms-samples-java/src/main/java/com/aliyun/kms/samples/ExportDataKeyDemo.java), <br>[GenerateAndExportDataKeyDemo](./kms-samples-java/src/main/java/com/aliyun/kms/samples/GenerateAndExportDataKeyDemo.java) | --- | --- | | 数据密钥转加密 | [调用ReEncrypt接口对密文进行转加密](https://help.aliyun.com/document_detail/176707.html) | [对称CMK间转保护数据密钥](./kms-samples-java/src/main/java/com/aliyun/kms/samples/ReEncryptSymmToSymmDemo.java), <br>[公钥保护的DataKey转为对称CMK保护](./kms-samples-java/src/main/java/com/aliyun/kms/samples/ReEncryptAsymmToSymmDemo.java) | --- | --- | | 短期访问凭证调用<br>阿里云KMS API | [直接使用阿里云账号的主账号的AccessKey ID<br>和AccessKey Secret进行应用开发会有一定的安全<br>风险,为了提升安全性,您可以使用为RAM角色<br>签发的STS Token来访问阿里云服务。](https://help.aliyun.com/document_detail/189772.html) | [ECS RamRole安全访问KMS](./kms-samples-java/src/main/java/com/aliyun/kms/samples/ECSRamRoleCredentialsDemo.java), <br>[STS Token访问KMS](./kms-samples-java/src/main/java/com/aliyun/kms/samples/STSTokenCredentialsDemo.java) | --- | --- | | KMS错误重试 | [使用指数退避方法对请求错误进行重试](https://help.aliyun.com/document_detail/163625.html) | [指数退避方法对请求错误进行重试示例](./kms-samples-java/src/main/java/com/aliyun/kms/samples/KmsSDKExponentialBackoffDemo.java) | --- | --- | | 证书请求 | 基于非对称主密钥生成证书请求 | [RSA证书请求](./kms-samples-java/src/main/java/com/aliyun/kms/samples/GenerateRSACSR.java), <br>[ECC证书请求](./kms-samples-java/src/main/java/com/aliyun/kms/samples/GenerateECCSR.java), <br>[SM2证书请求](./kms-samples-java/src/main/java/com/aliyun/kms/samples/GenerateSM2CSR.java) | --- | [证书请求](./kms-samples-python/generate_csr.py) | | 支付宝开放平台 | [通过阿里云KMS产生RSA密钥对,<br>提供支付宝开放平台接口加签功能](https://forum.alipay.com/mini-app/post/8001031) | [alipayEasySDK公钥模式](./kms-samples-java/src/main/java/com/aliyun/kms/samples/KmsAlipayEasySDKPublicKeyDemo.java), <br>[alipayEasySDK证书模式](./kms-samples-java/src/main/java/com/aliyun/kms/samples/KmsAlipayEasySDKCertDemo.java), <br>[alipaySDK公钥模式](./kms-samples-java/src/main/java/com/aliyun/kms/samples/KmsAlipaySDKPublicKeyDemo.java), <br>[alipaySDK证书模式](./kms-samples-java/src/main/java/com/aliyun/kms/samples/KmsAlipaySDKCertDemo.java) | --- | --- | | PDF文件加签 | [通过阿里云KMS非对称密钥对,<br>对pdf文件进行签名](https://help.aliyun.com/document_detail/148146.html) | [PDF文件签名示例](./kms-samples-java/src/main/java/com/aliyun/kms/samples/pdfsign/KmsPdfSignSample.java) | --- | --- |
1
SAP-samples/btp-azure-opensap
Exercises and sample code for the openSAP course Building Applications on SAP BTP with Microsoft Services""
null
[![REUSE status](https://api.reuse.software/badge/github.com/SAP-samples/btp-azure-opensap)](https://api.reuse.software/info/github.com/SAP-samples/btp-azure-opensap) --- Even though the course is now closed, you can still access the videos and PDFs in self-paced mode via the [openSAP course itself](https://open.sap.com/courses/btpma1). The hands-on exercises will continue to be available for some time. However, certain steps and screenshots may be out of date as products continue to evolve. Therefore, we cannot guarantee that all exercises will work as expected after the end of the course. --- # Building applications on SAP BTP with Microsoft Services Welcome! This repository serves as a central point for all exercises that are part of the openSAP course **Building applications on SAP BTP with Microsoft Services**. For all information about the course and the corresponding content please visit the [openSAP course page](https://open.sap.com/courses/btpma1). The exercises individually are only a small subset of the course and are not meant to be used on their own. Please do the exercises whenever they appear in the respective week pages in the openSAP course. ### Accounts/Subscriptions needed in this course Throughout this course you will create and use several accounts. Obviously you need to have a private email address (outlook.com or alike) to register for these offerings. We do not recommend using your company email address for account registration, as this can lead to authorisation problems. (For example, if your company already has an Azure subscription). The registration of the accounts is part of the exercises, so you do not need to have any accounts beforehand. > **IMPORTANT: We recommend to perform all these setps in a Private-Window in your browser to make sure that you don't use your corporate or other already existing authentications.** So in summary you will create the following accounts: | Service | Mail address | Link to the Unit | | --------------------------------- | ----------------------------------------- | ---------------------------------------------------------------------------------------- | | SAP BTP Trial Account | privatemail@outlook.com | [Week 1, Unit 2](https://github.com/SAP-samples/btp-azure-opensap/tree/main/Week1/Unit2) | | Azure Trial Account | privatemail@outlook.com | [Week 1, Unit 3](https://github.com/SAP-samples/btp-azure-opensap/tree/main/Week1/Unit3) | | Microsoft365 Developer Account | \<youruser>@\<yourdomain>.onmicrosoft.com | [Week 2, Unit 1](https://github.com/SAP-samples/btp-azure-opensap/tree/main/Week2/Unit1) | | SAP Conversational AI account | privatemail@outlook.com | [Week 3, Unit 3](https://github.com/SAP-samples/btp-azure-opensap/tree/main/Week3/Unit3) | | | SAP Analytics Cloud Trial account | privatemail@outlook.com | Week 4, Unit 1 - coming in Week 4 | Important: the Microsoft365 Developer account (\<youruser>@\<yourdomain>.onmicrosoft.com) needs to be added to the Azure Trial account. This is done in [Week2, Unit 1 (Step 1 - Step 4)]((https://github.com/SAP-samples/btp-azure-opensap/tree/main/Week2/Unit1)). From then on, you will need \<youruser>@\<yourdomain>.onmicrosoft.com to sign in to Azure. ## Known Issues None so far. ## Contributing If you have found any problems with the content or form, please create a pull request in this repository. We would be very grateful! ## License Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved. This project is licensed under the Apache Software License, version 2.0 except as noted otherwise in the [LICENSE](LICENSES/Apache-2.0.txt) file.
1
evanx/vellum
Technical articles and sample code
null
See the wiki homepage: https://github.com/evanx/vellum/wiki At some stage, commmon utilities were copied to <a href="https://github.com/evanx/vellumcore">github.com/evanx/vellumcore</a>, as a dependency for other projects. Also <a href="https://github.com/evanx/dualcontrol">dualcontrol</a> code was copied to <a href="https://github.com/evanx/dualcontrol">github.com/evanx/dualcontrol</a>. However it is possible that more recent changes to that code were made here, for the purposes of the <a href="https://github.com/evanx/vellum/wiki/DualControl">Dual Control</a> article. On that subject, also see <a href="https://github.com/evanx/keyserver">github.com/evanx/keyserver</a> - a Node.js re-implementation of the Java <a href="https://github.com/evanx/dualcontrol">dualcontrol</a> package. It provides a secure "vault" server with client-authenticated HTTPS access. It uses Redis to store encrypted data, and the encryption keys. Encryption keys are protected by split-knowledge passwords, hashed with PDKDF2, and encrypted using AES.
1
cqsupport/webinar-dispatchercache
Sample code and configurations to support a webinar showing how to optimize dispatcher caching with Adobe CQ.
adobe-cq aem cq-experts dispatcher expert java join-adobe-experts webinar
Optimizing the CQ Dispatcher Cache ======================= Sample code and configurations to support a webinar showing how to optimize dispatcher caching with Adobe CQ. **Sample code for the following webinar which was on Thursday, February 21st, 2013.** ### Webinar Recording http://my.adobeconnect.com/p7th2gf8k43/ ### Presentation Slides View online here: http://www.slideshare.net/andrewmkhoury/aem-cq-dispatcher-caching-webinar-2013 Join Adobe experts for an exclusive Adobe CQ Webinar ------------------------------------ To maximize your CQ experience, it is important that you optimize the response time. Our experts will provide you a hands-on guidance and real life examples in a 45 minutes webinar. Join Adobe CQ experts Andrew Khoury and Henry Saginor, to learn about:- Join our CQ experts in a 60-minute webinar for hands-on guidance on how to always get your Dispatcher Cache strategy right. The session will cover: ### Optimizing dispatcher cache covering: * Best practices for using the dispatcher * Tips and tricks for improving performance * Common pitfalls to avoid * How to design your site so you get the most out of your Dispatcher ### Who should attend? This session is designed to educate - * CQ Developers * CQ Administrators * CQ Web Ops Engineers * CQ Dev Ops Engineers ### Related Documentation * Dispatcher Documentation - http://dev.day.com/docs/en/cq/current/deploying/dispatcher.html * Configuring Dispatcher - http://dev.day.com/docs/en/cq/current/deploying/dispatcher/disp_config.html * Dispatcher Troubleshooting - http://helpx.adobe.com/adobe-cq/kb/troubleshooting-dispatcher-flushing-issues.html * How to Configure Dispatcher Flush from a Publish instance - http://dev.day.com/docs/en/cq/current/deploying/dispatcher/page_invalidate.html#Invalidating%20Dispatcher%20Cache%20from%20a%20Publishing%20Instance * How to flush DAM assets from a CQ5 Publish instance - http://helpx.adobe.com/cq/kb/HowToFlushAssetsPublish.html
1
jgilfelt/ThisWayUp
Sample app for my Droidcon London 2013 talk - This Way Up: Implementing Effective Navigation""
null
null
1
YugabyteDB-Samples/yugastore-java
An implementation of a sample e-commerce app composed of microservices written in Spring (Java), a UI based on React, and YugabyteDB as the distributed SQL database.
demos spring-boot spring-data-jpa yugabyte
# Yugastore in Java ![Homepage](docs/home.png) This is an implementation of a sample ecommerce app. This microservices-based retail marketplace or eCommerce app is composed of **microservices written in Spring (Java)**, a **UI based on React** and **YugabyteDB as the [distributed SQL](https://www.yugabyte.com/tech/distributed-sql/) database**. If you're using this demo app, please :star: this repository! We appreciate your support. ## Trying it out This repo contains all the instructions you need to [run the app on your laptop](#building-the-app). You can also [try the app out](https://yugastore-ui.cfapps.io/) online, it is hosted on [Pivotal Web Services](https://run.pivotal.io/). # Versions * Java 17 * Spring Boot 2.6.3 * Spring Cloud 2021.0.0 * Yugabyte Java Driver 4.6.0-yb-10 * Python 3 (Data Loading) # Features * Written fully in Spring Framework * Desgined for multi-region and Kubernetes-native deployments * Features 6 Spring Boot microservices * Uses a discovery service that the microservices register with * Sample data has over 6K products in the store ## Architecture The architecture diagram of Yugastore is shown below. ![Architecture of microservices based retail marketplace app](yugastore-java-architecture.png) | Microservice | YugabyteDB API | Default host:port | Description | | -------------------- | ---------------- | ---------------- | --------------------- | | [service discovery](https://github.com/yugabyte/yugastore-java/tree/master/eureka-server-local) | - | [localhost:8761](http://localhost:8761) | Uses **Eureka** for localhost. All microservices register with the Eureka service. This registration information is used to discover dynamic properties of any microservice. Examples of discovery include finding the hostnames or ip addresses, the load balancer and the port on which the microservice is currently running. | [react-ui](https://github.com/yugabyte/yugastore-java/tree/master/react-ui) | - | [localhost:8080](http://localhost:8080) | A react-based UI for the eCommerce online marketplace app. | [api-gateway](https://github.com/yugabyte/yugastore-java/tree/master/api-gateway-microservice) | - | [localhost:8081](http://localhost:8081) | This microservice handles all the external API requests. The UI only communicates with this microservice. | [products](https://github.com/yugabyte/yugastore-java/tree/master/products-microservice) | YCQL | [localhost:8082](http://localhost:8082) | This microservice contains the entire product catalog. It can list products by categories, return the most popular products as measured by sales rank, etc. | [cart](https://github.com/yugabyte/yugastore-java/tree/master/cart-microservice) | YSQL | [localhost:8083](http://localhost:8083) | This microservice deals with users adding items to the shopping cart. It has to be necessarily highly available, low latency and often multi-region. | [checkout](https://github.com/yugabyte/yugastore-java/tree/master/checkout-microservice) | YCQL | [localhost:8086](http://localhost:8086) | This deals with the checkout process and the placed order. It also manages the inventory of all the products because it needs to ensure the product the user is about to order is still in stock. | [login](https://github.com/yugabyte/yugastore-java/tree/master/login-microservice) | YSQL | [localhost:8085](http://localhost:8085) | Handles login and authentication of the users. *Note that this is still a work in progress.* # Build and run To build, simply run the following from the base directory: ``` $ mvn -DskipTests package ``` To run the app on host machine, you need to first install YugabyteDB, create the necessary tables, start each of the microservices and finally the React UI. ## Running the app on host Make sure you have built the app as described above. Now do the following steps. ## Step 1: Install and initialize YugabyteDB You can [install YugabyteDB by following these instructions](https://docs.yugabyte.com/latest/quick-start/). Now create the necessary tables as shown below. Note that these steps would take a few seconds. ``` $ cd resources $ cqlsh -f schema.cql ``` Next, load some sample data. ``` $ cd resources $ ./dataload.sh ``` Create the postgres tables in `resources/schema.sql` for the YSQL tables. ## Step 2: Start the Eureka service discovery (local) You can do this as follows: ``` $ cd eureka-server-local/ $ mvn spring-boot:run ``` Verify this is running by browsing to the [Spring Eureka Service Discovery dashboard](http://localhost:8761/). ## Step 2: Start the api gateway microservice To run the products microservice, do the following in a separate shell: ``` $ cd api-gateway-microservice/ $ mvn spring-boot:run ``` ## Step 3: Start the products microservice To run the products microservice, do the following in a separate shell: ``` $ cd products-microservice/ $ mvn spring-boot:run ``` ## Step 4: Start the checkout microservice To run the products microservice, do the following in a separate shell: ``` $ cd checkout-microservice/ $ mvn spring-boot:run ``` ## Step 5: Start the checkout microservice To run the cart microservice, do the following in a separate shell: ``` $ cd cart-microservice/ $ mvn spring-boot:run ``` ## Step 6: Start the UI To do this, simply run `npm start` from the `frontend` directory in a separate shell: ``` $ cd react-ui $ mvn spring-boot:run ``` Now browse to the marketplace app at [http://localhost:8080/](http://localhost:8080/). # Running the app in docker containers The dockers images are built along with the binaries when `mvn -DskipTests package` was run. To run the docker containers, run the following script, after you have [Installed and initialized YugabyteDB](#step-1-install-and-initialize-yugabyte-db): ``` $ ./docker-run.sh ``` Check all the services are registered on the [eureka-server](http://127.0.0.1:8761/). Once all services are registered, you can browse the marketplace app at [http://localhost:8080/](http://localhost:8080/). ## Screenshots ### Home ![Home Page](docs/home.png) ### Product Category Page ![Product Category](docs/product-category.png) ### Product Detail Page ![Product Page](docs/product.png) ### Car ![Cart](docs/cart.png) ## Checkout ![Checkout](docs/checkout.png)
1
enr1c091/microservices-oauth
Sample project explaining how to build Dockerized Microservices using Netflix OSS + Spring OAuth/JWT + HATEOAS APIs under Spring Boot 2
null
# Building Scalable Container-Ready and Secure Microservices The full article of this repository can be found [here][article]!! This repository contains an example of how to design and implement production-ready microservices using Spring Boot and Spring Cloud (Netflix OSS). It also applies some of the best practices for design and implementation of REST APIs like HATEOAS, DTOs, AOP and Swagger annotations for later documentation. For enhanced security, OAuth2 authentication is added via JWT tokens stored in our MySQL (or any database of your preference) to avoid unwanted access and making sure revoked tokens are indeed... revoked. Every submodule of this repository has a more detailed README which should help you understanding the concepts applied and how to access each service. # Installing Before you run your application, make sure to configure your JDBC Connection. This sample features [DDL and DML Scripts for MySQL][scripts] that will be used across all projects of this article. Have your MySQL installation or container up & running or else you'll end up getting a few errors. # Start Application 1. Start your MySQL Database and make sure all tables are created; 2. Clone this repo. Go it's parent folder of and run the following command: ```sh $ mvn clean install -DskipTests ``` 3. Run the following command for every project in the following order (Eureka > MS-GOT > Auth-Server > Zuul): ```sh $ mvn spring-boot:run ``` 4. Enjoy # Application Endpoints | Service | Port | Endpoint | | ------ | ------ | ------ | | Eureka | 9091 | http://localhost:9091/ | Auth Server | 9999 | http://localhost:9999/oauth/<resource> | API | 9093 | http://localhost:9091/ms-got/<resource> | Zuul | 9092 | http://localhost:9092/<resource> Since Zuul works as the Edge server, requests for Auth Server (9999) and API Server (9091) should all be made through port 9092. In a production environment Zuul would be in a DMZ exposed to the internet with SSL whilst our microservices would be inaccessible to the outside world. # Swagger definition Springfox 2.9.0 Swagger definition of our endpoints are available at http://localhost:9092/ms-got/swagger-ui.html/ and http://localhost:9092/uaa/swagger-ui.html/ > **Note:** > This example is using Spring Boot version 2.0.1.RELEASE and Spring Cloud version Finchley.RC1. > **TO-DO:** > - Add docker-compose for creating a Stack on Rancher. > - Add a Feign client for demonstrating how to invoke REST Services besides REST Template. [scripts]: <https://github.com/enr1c091/microservices-oauth/blob/master/docker-compose/mysql/scripts/oauth2.sql> [article]: <https://dzone.com/articles/building-scalable-container-ready-and-secure-micro>
1
loiane/ibatis-handling-joins
MyBatis/iBatis sample application. This sample app demonstrates how to work with advance result mapping, one-to-one relantionship, one-to-many relationship and many-to-many relationship using iBatis (MyBatis 3).
null
null
1
sachinvarma/Speech-Recognizer
This is a sample project which is having a continuous speech recognizer which will work as a background service.
null
# Speech-Recognizer This is a sample project which is having a continuous Speech Recognizer, which will listen voice commands as a background service. ![](https://github.com/sachinvarma/Speech-Recognizer/blob/master/Art/demo.gif) **How to Add :** Via Gradle: ``` repositories { maven { url "https://jitpack.io" } } ``` ``` compile 'com.github.sachinvarma:Speech-Recognizer:0.0.1' ``` Via Maven: ``` <dependency> <groupId>com.github.sachinvarma</groupId> <artifactId>Speech-Recognizer</artifactId> <version>0.0.1</version> </dependency> ``` **How it works:** 1) Create a Simple Service class, which is used to initate the Scpeech Recognizer and run contionously in background and update the listened words. https://github.com/sachinvarma/Speech-Recognizer/blob/master/app/src/main/java/com/sac/speechdemo/MyService.java 2) Simply start the service. ```startService(new Intent(MainActivity.this, MyService.class));``` **NOTE :** Some of the Mobile companies are restricting the services by default to run on background. So we have to enable AutoStart for such device that will allow the service to run in background. Requesting Permission : ``` private void enableAutoStart() { for (Intent intent : Constants.AUTO_START_INTENTS) { if (getPackageManager().resolveActivity(intent, PackageManager.MATCH_DEFAULT_ONLY) != null) { new Builder(this).title(R.string.enable_autostart) .content(R.string.ask_permission) .theme(Theme.LIGHT) .positiveText(getString(R.string.allow)) .onPositive((dialog, which) -> { try { for (Intent intent1 : Constants.AUTO_START_INTENTS) if (getPackageManager().resolveActivity(intent1, PackageManager.MATCH_DEFAULT_ONLY) != null) { startActivity(intent1); break; } } catch (Exception e) { e.printStackTrace(); } }) .show(); break; } } } ``` Donations ============= This project needs you! If you would like to support this project's further development, the creator of this project or the continuous maintenance of this project, feel free to donate. Your donation is highly appreciated (and I love food, coffee and beer). Thank you! **PayPal** * **[Donate $5](https://www.paypal.me/sachinvarmaraja/5USD)**: Thank's for creating this project, here's a tea (or some juice) for you! * **[Donate $10](https://www.paypal.me/sachinvarmaraja/10USD)**: Wow, I am stunned. Let me take you to the movies! * **[Donate $15](https://www.paypal.me/sachinvarmaraja/15USD)**: I really appreciate your work, let's grab some lunch! * **[Donate $25](https://www.paypal.me/sachinvarmaraja/25USD)**: That's some awesome stuff you did right there, dinner is on me! * **[Donate $50](https://www.paypal.me/sachinvarmaraja/50USD)**: I really really want to support this project, great job! * **[Donate $100](https://www.paypal.me/sachinvarmaraja/100USD)**: You are the man! This project saved me hours (if not days) of struggle and hard work, simply awesome! * **[Donate $2799](https://www.paypal.me/sachinvarmaraja/2799USD)**: Go buddy, buy Macbook Pro for yourself! Of course, you can also choose what you want to donate, all donations are awesome! **LICENSE** ``` Copyright (C) 2018 Sachin Varma Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ``` **Credits :** Thanks to @gotev https://github.com/gotev/android-speech
1
bdelacretaz/OSGi-for-mere-mortals
Sample code for my OSGi for mere mortals" presentation at ApacheCon NA 2011"
apachecon java osgi tutorial
# OSGi for mere mortals This is the code of my "OSGi for mere mortals" presentation at [ApacheCon](http://apachecon.com) NA 2011, EU 2012 and EU 2014. <div style="float:right"><a href="http://events.linuxfoundation.org/events/apachecon-europe/program/schedule"> <img src="http://bit.ly/1ttg6CE"/></a></div> It's a minimal standalone RESTful server built from scratch using OSGi Declarative Services, meant to demonstrate that OSGi is not only for superhuman guru programmers. This example demonstrates the complete lifecycle of an OSGi application, from starting the framework and installing the required bundles to running the app itself. It also demonstrates the svelteness of the OSGi framework and core services: the total size of the build-time dependencies (jar files) is around 3 megabytes and additional runtime baggage amounts to ten OSGi bundles (also jar files) representing about 2 megabytes more, including all runtime features like the OSGi web console, interactive OSGi shell, the OSGi configuration mechanism and front-end and the servlet engine. Startup time is around 300 msec on my laptop. The Maven build is also a useful example of how to create OSGi bundles in a simple way. The slides at http://www.slideshare.net/bdelacretaz/osgi-for-mere-mortals should help you walk through the code. ## How to build and start To build the runnable jar, run `mvn clean install` at the top of the source code tree (using <a href="http://maven.apache.org">Apache Maven</a> 3.0.3 or later). You can then start the server from the *launcher* subfolder by running java -jar target/osgi-for-mere-mortals-launcher-0.0.1-SNAPSHOT.jar (or whatever the name of that jar file is). The OSGi console shown in the slides is at http://localhost:8080/system/console - use admin/admin to log in. ## How to use the server The server doesn't do much, that's not the point, the goal is just to demonstrate how it is assembled. You can store data via HTTP POST requests: $ date | curl -X POST -D - http://localhost:8080/store/testing HTTP/1.1 201 Created Location: /store/testing Content-Type: text/plain; charset=utf-8 Content-Length: 149 Server: Jetty(6.1.x) Stored at /store/testing StoredBy:ch.x42.osgi.samples.osgi101.app.servlets.StorageServlet StoredAt:Fri Nov 14 17:03:36 CET 2014 And retrieve it via HTTP GET: curl http://localhost:8080/store/testing StoredBy:ch.x42.osgi.samples.osgi101.app.servlets.StorageServlet StoredAt:Fri Nov 14 17:03:36 CET 2014 Path:/store/testing
1
sfav/axon-springboot-cloud
A sample springboot project using axon framework to implement event sourcing and cqrs
null
##Spring Cloud with Axon Event Sourcing, CQRS and AngularJS Example ###Introduction This application is a Spring Cloud example of using axon event sourcing in microservices. The project is intended to demonstrate end-to-end practice for building a microservice architecture that implement event sourcing and CQRS(Command Query Responsibility Segregation) using Spring Cloud and Axon Framework. It also demonstrates the usage of AngularJs SPA when building the Web UI server. The function of the application is simple: to do customer creation, customer list and query. It includes the following microservices: - Edge Service that routes request to different microservices (Zuul) - Discovery Service that discovers the microservices available and facilate Zuul for the routing (Eureka) - Configuration Service that is used to provide center configuration - Web UI Resource Server that contains the static resources like html, javascript and css, etc. - Customer Command Service with Axon Event Sourcing, it would handle customer creation, updates and also log the latest information to DB2 which would be used for query. - Customer Query Service that handles query of customer information. Architecture Diagram ![Architecture Diagram](https://raw.githubusercontent.com/sfav/axon-springboot-cloud/master/axon-sfav-webui/src/main/resources/static/image/sfav-architecture.jpg) This reference application uses the following data store, but they could be changed to other type with small changes. - H2 - Customer Query - File - Axon Event Store ###How to Run 1. Download [H2 databse](http://www.h2database.com/html/main.html) and run below command to start H2 database java -jar h2-1.4.192.jar -webAllowOthers -tcpAllowOthers 2. git clone this repository and go to each maven module and start those micro services using maven: mvn spring-boot:run Note, - The configuration service need to be started first so that other services could get correct property. - The configuration service will get properties from [Sfav Configuration Repository](https://github.com/sfav/axon-springboot-cloud-config). - There will be warning message shown for configuration service due to not able to register with Eureka. 3. Visit link http://{your-computer-name}:8080/ui, it will show this introduction, click create to enter new customer, and then query the customer list and see details. ![Home View](https://raw.githubusercontent.com/sfav/axon-springboot-cloud/master/axon-sfav-webui/src/main/resources/static/image/sfav-home.png) ![Create View](https://raw.githubusercontent.com/sfav/axon-springboot-cloud/master/axon-sfav-webui/src/main/resources/static/image/sfav-create.png) ![List View](https://raw.githubusercontent.com/sfav/axon-springboot-cloud/master/axon-sfav-webui/src/main/resources/static/image/sfav-list.png) ![Query Details View](https://raw.githubusercontent.com/sfav/axon-springboot-cloud/master/axon-sfav-webui/src/main/resources/static/image/sfav-query.png) ###License This project is licensed under Apache License 2.0.
1
lifedemons/photoviewer
This is the sample of Clean Architecture in Real Conditions
null
# Photo Viewer Sample This is the sample of Clean Architecture in Real Conditions This project has been influenced by: **1. Uncle Bob** (http://blog.8thlight.com/uncle-bob/2012/08/13/the-clean-architecture.html) **2. Fernando Cejas** (http://fernandocejas.com/2015/07/18/architecting-android-the-evolution/) **Technical stack:** ***Languages:*** Java/Kotlin(for Unit tests) ***DI:*** Dagger/Butterknife ***Persistency:*** DB: ORMLite, Preferences: Own PreferenceDAO ***Networking:*** Retrofit, Picasso, OkHttp ***Asynchronous programming:*** RxJava ***UI:*** Design Support Library, AppCompat, RecyclerView ***Cool sources:*** Retrolambda, Lombok ***Unit Testing:*** Mockito ***Functional testing:*** Cucumber + PageObject via Espresso **2. Next steps:** a. Integrate with Flickr + more functions
1
odrotbohm/spring-modulith-deep-dive
Sample code for the Spring Modulith Deep Dive workshop / training
null
null
1
florent37/OCiney
OCiney is a sample app implementing several UI and UX patterns. I was firstly built to test a few different implementations of a details page.
null
null
1
ray-project/mobius
Mobius is an AI infrastructure platform for distributed online learning, including online sample processing, training and serving.
distributed-computing fusion machine-learning online-learning realtime training
null
1
zowe/sample-spring-boot-api-service
Zowe REST API service SDK and sample API service that integrates with Zowe API Mediation Layer
java mainframe rest-api sample zos zowe
# [Zowe](https://zowe.org/) REST API SDK and Sample Service &middot; [![CircleCI](https://circleci.com/gh/zowe/sample-spring-boot-api-service.svg?style=shield)](https://circleci.com/gh/zowe/sample-spring-boot-api-service) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=zowe_sample-spring-boot-api-service&metric=alert_status)](https://sonarcloud.io/dashboard?id=zowe_sample-spring-boot-api-service) [ ![download](https://api.bintray.com/packages/plavjanik/zowe/zowe-rest-api-commons-spring/images/download.svg?version=1.1.0) ](https://bintray.com/plavjanik/zowe/zowe-rest-api-commons-spring/1.1.0/link)<a href="https://scan.coverity.com/projects/zowe-sample-spring-boot-api-service"><img alt="Coverity Scan Build Status" src="https://scan.coverity.com/projects/21953/badge.svg"/></a> This project provides: 1. [Sample REST API service](zowe-rest-api-sample-spring/README.md) that run on z/OS and can use native z/OS interfaces 2. SDK (software development kit) for creating such services that includes: - [Common Java library for REST APIs on z/OS](zowe-rest-api-commons-spring/README.md) that includes the reusable functionality for developing such API services on z/OS - [CLI tool zowe-api-dev](zowe-api-dev/README.md) that will allow use to develop your API service on PC and deploy it to z/OS UNIX environment ## Getting Started ### Developing New REST API Service Follow the instructions at [Zowe Sample API Service](zowe-rest-api-sample-spring/README.md). ## Demo ### Deploying the sample REST API to z/OS under 5 minutes [![asciicast](https://asciinema.org/a/266002.svg)](https://asciinema.org/a/266002) ## Documentation for SDK Developers - [Building SDK](docs/building.md) - [Building z/OS native code](docs/zos-native-code.md) - [Releasing](docs/releasing.md) ## License The repository is dual-licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0) and [Eclipse Public License - v 2.0](https://www.eclipse.org/legal/epl-2.0/).
1
uttesh/JmeterAPISample
POC sample for load testing by jmeter api java code instead of gui and generating the jmx and csv reports
null
# JmeterAPISample Sample application for load testing by jmeter api java code instead of gui and generating the jmx and csv reports Full description on this sample is explained in my blog <a href="http://uttesh.blogspot.in/2015/04/jmeter-load-testing-by-code-jmeter-api.html" target="_blank">http://uttesh.blogspot.in/2015/04/jmeter-load-testing-by-code-jmeter-api.html</a>
1
filippoengidashet/Retrofit2-RestApiDemo
This is a sample to make an http request using retrofit2 and display it on a recyclerview. If the device is offline, it is able to display the images and data from sqlite database. Used libraries: Picasso, retrofit, Google gson and others. If you are happy with the sample follow me on github.
null
# Retrofit2-RestApiDemo This is a sample to make an http request using retrofit2 and display it on a recyclerview. If the device is offline, it is able to display the images and data from sqlite database. Used libraries: Picasso, retrofit, Google gson and others. If you are happy with the sample follow me on github. For demo video link: https://drive.google.com/open?id=1mLPqyqoq30_dW7KyeqanxakLs4j9ISgk
1
kbastani/sentiment-analysis-twitter-microservices-example
A sample application that demonstrates how to build a graph processing platform to analyze sources of emotional influence on Twitter.
graph-algorithms neo4j pagerank spring-boot spring-data twitter-sentiment-analysis
# Sentiment Analysis Twitter Microservices Example A sample application that demonstrates how to build a graph processing platform to analyze sources of emotional influence on Twitter. [A guided tutorial](http://www.kennybastani.com) is provided with this sample project. This repository is actively being worked on and has not yet transformed into its final state. Please check back periodically to see updates. If you have trouble running the example, please post to the issue tracker. ## Architecture The diagram below shows each component and microservice as a part of this sample application. The connections are communication points between each service, describing what protocol is used. ![Twitter Crawler Architecture Diagram](https://i.imgur.com/Jp4I1tp.png) The two Spring Boot applications that are colored in blue are stateless services. Stateless services will not attach a persistent backing service or need to worry about managing state locally. The Spring Boot application that is colored in green is the _Twitter Crawler_ service. Components that are colored in green will typically have an attached backing service. These backing services are responsible for managing state locally, and will either persist state to disk or in-memory. The services colored in red are external APIs that are used to collect data and to run sentiment analysis and other natural language machine learning algorithms. ### Spring Boot Services - Rank Dashboard - Discovery Service - Configuration Service - Twitter Crawler ### Backing Services - Neo4j (BOLT) - RabbitMQ (AMQP) - Twitter API (HTTP) - Google Cloud Language API (HTTP) ## Graph Processing Platform Neo4j is a graph database that includes graph processing algorithms from a community plugin called [APOC](https://neo4j.com/developer/graph-algorithms/). ## Graph Data Model The graph data model in Neo4j will be created using the following diagram. ![Twitter Graph Data Model](https://i.imgur.com/U1eK3vi.png) ### Sentiment Analysis When Twitter data is imported, a user's tweets will be analyzed using the GCP Natural Language API. ![Twitter Graph Data Model](https://i.imgur.com/LkdSk6p.png) ### Category Categories will be inferred over time by analyzing the top ranked phrases and submitting the group of tweets as a document to GCP's classification API. ![Twitter Graph Example Model](https://i.imgur.com/6yJTJuE.png) ## External APIs To be able to run the example, you'll need to provide API authorization for both the GCP NLP API and Twitter Developer API. - Check out consumerKey and accessToken at the [Twitter developer site](https://dev.twitter.com) - Check out GCP token authorization file at [GCP developer documentation](https://cloud.google.com/docs/authentication/production) - Fill out Twitter properties on `docker-compose.yaml` - Add your GCP authorization to `twitter-rank-crawler/credentials.json` - _Please do not check-in your private secrets to public GitHub!_ - Run `mvn clean install -DskipTests` in your terminal with Docker running - Run `docker-compose up` in your terminal console ## License This library is an open source product licensed under Apache License 2.0.
1
dsyer/spring-boot-js-demo
These samples explore the different options that Spring Boot developers have for using Javascript and CSS on the client (browser) side of their application.
javascript spring spring-boot
null
0
rrifafauzikomara/GoogleMapsSample
Sample app who implement all API Google Maps V2 (Get Current Location, Place Autocomplete, Place Search, Place Picker)
autocomplete current-location gmaps-api real-time
# Google Maps V2 Sample ![GitHub stars](https://img.shields.io/github/stars/rrifafauzikomara/GoogleMapsSample?style=social) ![GitHub forks](https://img.shields.io/github/forks/rrifafauzikomara/GoogleMapsSample?style=social) ![GitHub watchers](https://img.shields.io/github/watchers/rrifafauzikomara/GoogleMapsSample?style=social) ![GitHub license](https://img.shields.io/badge/License-MIT-blue.svg) ![platform](https://img.shields.io/badge/platform-android-green.svg) [![Open Source Love](https://badges.frapsoft.com/os/v2/open-source.svg?v=103)](https://github.com/rrifafauzikomara/GoogleMapsSample) Sample app who implement all API Google Maps V2 ### Config To run this example, you should add your API KEY first for MAPS into ***google_maps_api.xml*** file. ## Branch master ### Screenshot 1 📸 <pre> <img src="Screenshot/Screenshot_1.jpg" width="250" height="500"> </pre> In this branch, add API Google Maps for get current location (real time) ## Branch add_api_place_autocomplete ### Screenshot 2 📸 <pre> <img src="Screenshot/Screenshot_2.jpg" width="250" height="500"> <img src="Screenshot/Screenshot_3.jpg" width="250" height="500"> <img src="Screenshot/Screenshot_4.jpg" width="250" height="500"> </pre> In this branch, add API Google Maps for Place Autocomplete ## Branch add_api_place_search ### Screenshot 3 📸 <pre> <img src="Screenshot/Screenshot_5.jpg" width="250" height="500"> </pre> In this branch, add API Google Maps Place Search restaurant in Bandung with radius 1500 meters ## Branch add_api_place_picker ### Screenshot 4 📸 <pre> <img src="Screenshot/Screenshot_6.jpg" width="250" height="500"> <img src="Screenshot/Screenshot_7.jpg" width="250" height="500"> <img src="Screenshot/Screenshot_8.jpg" width="250" height="500"> <img src="Screenshot/Screenshot_9.jpg" width="250" height="500"> </pre> In this branch, add API Google Maps for Place Picker ## Author * **R Rifa Fauzi Komara** Don't forget to follow me, fork and give me a ⭐ ## License ``` MIT License Copyright (c) [2020] [R Rifa Fauzi Komara] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ```
1
gbonjubee/MobileMoneySolution
This repo contains sample code integrating Africa's Talking USSD and Flutterwave API for Mobile Money Application.
how-to-create-mobile-money-solution java mobile-money ussd
# FlutterNTalkingUssd This repo contains sample code showing how to create a mobile money application using Africa's Talking USSD and Flutterwave API for payment. Slide available here: https://docs.google.com/presentation/d/1JnKWipxncwb2B2ugVJvIkrsWB0VtBv1zaEBGowkJ1ZM/edit?usp=sharing
1
aws-samples/selling-partner-api-bootstrap
A sample for how to properly implement the Selling Partner API rate limit and authentication.
null
## selling-partner-api-bootstrap This project is a sample implementation of how to implement `rate limiter` and `authentication` for Amazon Selling Partner API. This implementation followed the official document [here](https://github.com/amzn/selling-partner-api-docs). ### Overview This project consist of two parts, one is CDK script which is able to deploy everything by one command. The other part is the Java code that pull `Orders` from SP-API, it is triggered by a timer in `EventBridge` every minute for **all** sellers in the `credentials` table. Also `Fulfillment` API is implemented to demo the SP-API `subscription` mode, which first receive notification from `EventBridge`. It is based on serverless architecture, and used services are `DynamoDB, Lambda, EventBridge, ElasticCache, CloudWatch`. CDK scripts will start from create VPC and most of the code is running inside the VPC. After the execution of CDK scripts everything is provisioned on AWS. You should go and check the DynamoDB table, and you should put seller credentials into the table. One helper class called `InitCredentialsTableHelper` is provided to easy this process. The value of the credentials can be found from the following picture. ![credentials.png](doc/credentials.png) `RateLimter` is implemented by utilize `Redis on ElasticCache`, so seprate Lambda instances will share the same limiter during the pulling. The RateLimter will dynamically update the rate according to the HTTP header responded from server side. Separate `README.md` are included in each sub-folder. ### Chinese version Workshop A Chinese version SP-API workshop can be found [here](https://www.spapi.org.cn/ ). ## Contribute Pull requests and issue reports are welcome. ## Security See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information. ## License This library is licensed under the MIT-0 License. See the LICENSE file.
1
HMS-Core/hms-iap-serverdemo
IAP server sample encapsulates APIs of the HUAWEI IAP server. It provides many sample programs for your reference or usage. The repository contains 8 branches of java, csharp, golang, nodejs, perl, php, python and ruby demo.
hms huawei in-app-purchases java pay purchase
# **iap-java-sample** English | [中文](README_ZH.md) ## Contents * [Introduction](#introduction) * [Installation](#installation) * [Environment Requirements](#Environment Requirements) * [Configuration ](#configuration ) * [Sample Code](#Sample Code) * [License](#license) ## Introduction Java sample code encapsulates APIs of the HUAWEI IAP server. It provides many sample programs for your reference or use. The following describes packages of Java sample code. **AtDemo:** Sample code of **AccessToken**. Each method can run independently. **OrderService:** Sample code of **OrderService**. Each method can run independently. **SubscriptionService:** Sample code of **SubscriptionService**. Each method can run independently. **notification:** Sample code of **notification**. Each method can run independently. ## Installation Before using Java sample code, check whether the Java environment has been installed. Decompress the Java sample code package. Copy the Java sample code package in the decompressed folder to the project vendor directory in the path specified by **JAVAPATH**. Refresh the project and ensure that the file is successfully copied to the destination directory. ## Environment Requirements JDK 1.8 or a later version is recommended. ## Configuration To use functions provided in examples, you need to set related parameters in **AtDemo.java**, **OrderService.java**, **SubscriptionService.java**, and **AppServer.java** in the package. The following describes parameters in **AtDemo.java**. **clientId:** Client ID, which is obtained from app information. **clientSecret:** Secret access key of an app, which is obtained from app information. **tokenUrl:** URL for the Huawei OAuth 2.0 service to obtain a token. Please refer to [OAuth 2.0-based Authentication](https://developer.huawei.com/consumer/en/doc/development/HMSCore-Guides/open-platform-oauth-0000001053629189?ha_source=hms1). The following describes parameters in **notification/AppServer.java**. **PUBLIC_KEY:** RSA public key. At first, the meaning of **accountFlag** should be clear. If field **accountFlag** in **InappPurchaseData** equals to **1**, the account belongs to telecom carrier (**TOBTOC_SITE_URL**); otherwise, to Huawei (**TOC_SITE_URL**). For both **OrderService** and **SubscriptionService**, you need to choose appropriate site. **TOC_SITE_URL:** The TOC_SITE_URL has different URLs at different sites, you should always choose the address of the nearest site to access. **TOBTOC_SITE_URL:** The site for telecom carrier. ## Sample Code Each method in the Java sample calls an API of the HUAWEI IAP server. The following describes methods in the Java sample. 1. AtDemo: getAppAT() You can call this method to get an app-level Access Token. Code location: **src/main/java/com/example/demo/AtDemo.java** 2. OrderService: verifyToken() You can call this method to verify the purchase token in the payment result with the Huawei payment server to confirm the accuracy of the payment result. The URL is **{rootUrl}/applications/purchases/tokens/verify**. The rootUrl has different URLs at different sites, you should always choose the Order service address of the nearest site to access. Code location: **src/main/java/com/example/demo/OrderService.java** 3. OrderService: cancelledListPurchase() You can call this method to pagination query all purchase information that has been cancelled or has a refund. The URL is **{rootUrl}/applications/{apiVersion}/purchases/cancelledList**. The rootUrl has different URLs at different sites, you should always choose the Order service address of the nearest site to access. Code location: **src/main/java/com/example/demo/OrderService.java** 4. SubscriptionService: getSubscription() You can call this method to verify a purchased subscription product, such as to obtain the validity period and status. The URL is **{rootUrl}/sub/applications/{apiVersion}/purchases/get**. The rootUrl has different URLs at different sites, you should always choose the Subscription service address of the nearest site to access. Code location: **src/main/java/com/example/demo/SubscriptionService.java** 5. SubscriptionService: stopSubscription() You can call this method to cancel an already subscribed product, the subscription is still valid during the validity period, and subsequent renewals will be terminated. The URL is **{rootUrl}/sub/applications/{apiVersion}/purchases/stop**. The rootUrl has different URLs at different sites, you should always choose the Subscription service address of the nearest site to access. Code location: **src/main/java/com/example/demo/SubscriptionService.java** 6. SubscriptionService: delaySubscription() You can call this method to renew a subscription product for a customer until a specified time in the future. After success, the customer's subscription will expire at a future time. The URL is **{rootUrl}/sub/applications/{apiVersion}/purchases/delay**. The rootUrl has different URLs at different sites, you should always choose the Subscription service address of the nearest site to access. Code location: **src/main/java/com/example/demo/SubscriptionService.java** 7. SubscriptionService: returnFeeSubscription() You can call this method to refund the last renewal fee of a subscription product, but the subscription product is still valid during the validity period, and subsequent renewals will be performed normally. The URL is **{rootUrl}/sub/applications/{apiVersion}/purchases/returnFee**. The rootUrl has different URLs at different sites, you should always choose the Subscription service address of the nearest site to access. Code location: **src/main/java/com/example/demo/SubscriptionService.java** 8. SubscriptionService: withdrawSubscription() You can call this method to cancel a subscription, which is equivalent to executing the returnFeeSubscription method, and immediately ending the subscription service and subsequent renewal. The URL is **{rootUrl}/sub/applications/{apiVersion}/purchases/withdrawal**. The rootUrl has different URLs at different sites, you should always choose the Subscription service address of the nearest site to access. Code location: **src/main/java/com/example/demo/SubscriptionService.java** 9. AppServer: dealNotification() You can call this method to handle subscription event notifications. The information parameter is obtained from subscription event notification. Code location: **src/main/java/com/example/demo/notification/AppServer.java** 10. OrderService: confirmPurchase() You can call this method to confirm purchase after sending out product. The URL is **{rootUrl}/applications/{apiVersion}/purchases/confirm**. The rootUrl has different URLs at different sites, you should always choose the Order service address of the nearest site to access. Code location: **OrderService.java** ## License IAP Java sample is licensed under [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0).
1
bugcacher/CineWatch
Sample Movie app using Hilt, RxJava3, View Binding, Jetpack Components( MVVM, Navigation Component, Room, Live Data), Retrofit
hilt-android livedata mvvm navigation navigation-component room-database rxjava viewbinding
# CineWatch Sample Movie app using Hilt, RxJava3, View Binding, Jetpack Components( View Model, Navigation Component, Room, Live Data),and Retrofit <img src="https://user-images.githubusercontent.com/44507909/84819410-8e936100-b035-11ea-8ed8-89183afa6f6a.jpg" width="90%"></img> <img src="https://user-images.githubusercontent.com/44507909/84819394-8b987080-b035-11ea-9705-e8cbd16cbe5c.png" width="90%"></img> Cine Watch is built on MVVM architecture. ## Libraries Used: - [Hilt](https://developer.android.com/training/dependency-injection/hilt-android) - [RxJava3](https://github.com/ReactiveX/RxJava) - [ViewModel](https://developer.android.com/topic/libraries/architecture/viewmodel) - [LiveData](https://developer.android.com/topic/libraries/architecture/livedata) - [ViewBinding](https://developer.android.com/topic/libraries/view-binding) - [Retrofit](https://square.github.io/retrofit/#:~:text=Retrofit%20Configuration,are%20turned%20into%20callable%20objects.) - [Room](https://developer.android.com/training/data-storage/room) - [Navigation Component](https://developer.android.com/guide/navigation/navigation-getting-started) - [Android Youtube Video Player](https://github.com/PierfrancescoSoffritti/android-youtube-player) - [SmoothBottomBar](https://github.com/ibrahimsn98/SmoothBottomBar) ## API used: - [TMDB](https://developers.themoviedb.org/) ### Support by clicking :star: if you find this helpful :smiley: ## Author Maintained by [Abhinav Singh](https://www.github.com/abhinav0612) :sunglasses:
1
Frameworkium/frameworkium-examples
Sample project which utilises frameworkium-core, a framework for writing maintainable Selenium and REST API tests and facilitates reporting and integration to JIRA.
allure frameworkium selenium selenium-webdriver
# Frameworkium Examples ![build](https://github.com/frameworkium/frameworkium-examples/workflows/frameworkium-examples%20build/badge.svg) This is a *sample project* which utilises [frameworkium-core][frameworkium-core], a framework for writing maintainable Selenium and REST API tests that also makes integrating with other test things (e.g. JIRA) much easier. Please see the [Frameworkium usage guide][guidance] for more details. As a result: * Please [raise issues][core-issues] against the [frameworkium-core][frameworkium-core] project, not this one * See the [frameworkium-core releases page][core-releases] for information about changes and new features * This example project is not updated as regularly as the [core project][frameworkium-core] * To keep up to date with the latest releases of core, modify the following block in the `pom.xml`: ```xml <dependencies> <dependency> <groupId>com.github.frameworkium</groupId> <artifactId>frameworkium-core</artifactId> <!-- Update this with the latest from the frameworkium-core releases page --> <version>3.0.0</version> </dependency> </dependencies> ``` The Frameworkium project is based on Ardesco's [Selenium-Maven-Template][ardesco] and Joe VDW's [Bootstrapium][bootstrapium]. We have extended it with some handy extras for getting started quickly with Selenium, Appium and [Rest Assured][rest-assured]. ## Getting Started After setting up [apache maven][mvn], open the `frameworkium-examples` directory in a terminal/command prompt and run `mvn clean verify` to run the example tests using Firefox. You will need the [geckodriver][geckodriver] on your path if you are using Firefox version 48 or above. ### Browsers You can provide the `-Dbrowser` argument to chose a browser to run the tests in. #### Drivers Each browser requires a "driver". For chrome, [ChromeDriver][chromedriver] needs to be on your path or specified as an argument: ``` mvn clean verify -Dbrowser=chrome -Dwebdriver.chrome.driver=c:\path\to\chromedriver.exe ``` For Firefox 48 and above, [geckodriver][geckodriver] needs to be on your path or specified as an argument: ``` mvn clean verify -Dbrowser=firefox -Dwebdriver.gecko.driver=c:\path\to\geckodriver.exe ``` ### Selenium Grid Want to run tests using a grid and in parallel? ``` mvn clean verify -Dbrowser=chrome -DgridURL=http://localhost:4444/wd/hub -Dthreads=4 ``` All you need to do is ensure the browser is installed in the default location and that the driver is on the path. ### Sauce Labs Running mobile web tests using Appium on Sauce Labs is only slightly more involved: ```bash export SAUCE_USERNAME=username export SAUCE_ACCESS_KEY=access_key mvn clean verify -Dplatform=ios -Dbrowser=safari -Dsauce=true ``` ### BrowserStack Running mobile web tests using Appium on BrowserStack: ```bash export BROWSER_STACK_USERNAME=username export BROWSER_STACK_ACCESS_KEY=access_key mvn clean verify -Dplatform=ios -Dbrowser=safari -DbrowserStack=true ``` A full list of arguments can be found on the [guidance page][guidance]. ### Reporting After running your tests, you can generate an [Allure][allure] test report by simply running: ``` mvn allure:report ``` ## Further Information Frameworkium sets you up for other stuff too - check out the [guidance page][guidance] for further info. [status-svg]: https://travis-ci.org/Frameworkium/frameworkium-examples.svg?branch=master [status]: https://travis-ci.org/Frameworkium/frameworkium-examples [ardesco]: https://github.com/Ardesco/Selenium-Maven-Template [bootstrapium]: https://github.com/jvanderwee/bootstrapium [rest-assured]: http://rest-assured.io/ [frameworkium-core]: https://github.com/Frameworkium/frameworkium-core [core-issues]: https://github.com/Frameworkium/frameworkium-core/issues [core-releases]: https://github.com/Frameworkium/frameworkium-core/releases [mvn]: https://maven.apache.org/download.cgi [geckodriver]: https://github.com/mozilla/geckodriver/releases [chromedriver]: https://sites.google.com/a/chromium.org/chromedriver/home [guidance]: https://frameworkium.github.io [allure]: https://docs.qameta.io/allure/
1
HMS-Core/hms-ads-demo-java
HUAWEI Ads SDK sample code. HUAWEI Ads SDK provides the banner, native, rewarded, interstitial and splash ad formats for integration.
ads ads-kit ads-sdk hms hms-ads hms-ads-demo
# Petal Ads Sample Code (Java) English | [中文](https://github.com/HMS-Core/hms-ads-demo-java/blob/master/README_ZH.md) ## Contents * [Introduction](#Introduction) * [Installation](#Installation) * [Configuration](#Configuration) * [Environment Requirements](#Environment-Requirements) * [Sample Code](#Sample-Code) * [Running Result](#Running-Result) * [License](#License) ## Introduction The Java sample code provided by Ads Kit describes how to display ads by integrating the Petal Ads SDK into your Android app. ## Installation Install the sample code on a Huawei phone. <br>You can use HMS Toolkit to quickly run the sample code. HMS Toolkit supports one-stop kit integration, and provides functions such as free app debugging on remote real devices. To learn more about HMS Toolkit, please refer to the [HMS Toolkit documentation](https://developer.huawei.com/consumer/en/doc/development/Tools-Guides/getting-started-0000001077381096?ha_source=hms1).</br> ## Configuration Management N/A ## Environment Requirements Your Huawei phone has HMS Core (APK) 4.0.0 or later installed. ## Sample Code The Java sample code provided by Ads Kit integrates the Petal Ads SDK, which offers a range of ad formats including banner, native, rewarded, interstitial, splash, and roll ads. The sample code contains the following files for you to load and display ads and obtain user consent: (1) BannerActivity.java Used to load and display banner ads. <br>Storage path: app\src\main\java\com\huawei\hms\ads\sdk\BannerActivity.java</br> (2) NativeActivity.java Used to load and display native ads. <br>Storage path: app\src\main\java\com\huawei\hms\ads\sdk\NativeActivity.java</br> (3) RewardActivity.java Used to load and display rewarded ads. <br>Storage path: app\src\main\java\com\huawei\hms\ads\sdk\RewardActivity.java</br> (4) InterstitialActivity.java Used to load and display interstitial ads. <br>Storage path: app\src\main\java\com\huawei\hms\ads\sdk\InterstitialActivity.java</br> (5) SplashActivity.java Used to load and display splash ads. <br>Storage path: app\src\main\java\com\huawei\hms\ads\sdk\SplashActivity.java</br> (6) InstreamActivity.java Used to load and display roll ads. <br>Storage path: app\src\main\java\com\huawei\hms\ads\sdk\InstreamActivity.java</br> (7) ConsentActivity.java Used to obtain user consent. <br>Storage path: app\src\main\java\com\huawei\hms\ads\sdk\ConsentActivity.java</br> (8) ProtocolActivity.java Used to obtain users' consent on the privacy statement. <br>Storage path: app\src\main\java\com\huawei\hms\ads\sdk\ProtocolActivity.java</br> ## Running Result Banner ads&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&ensp; Interstitial ads&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&ensp; Native ads <img src="/result/Banner.gif" width=200> <img src="result/Interstitial.gif" width=200> <img src="result/Native.gif" width=200> Reward ads&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&ensp; Roll ads&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&ensp; Splash ads <img src="result/Reward.gif" width=200> <img src="result/Roll.gif" width=200> <img src="result/Splash.gif" width=200> ## Technical Support You can visit the [Reddit community](https://www.reddit.com/r/HuaweiDevelopers/) to obtain the latest information about HMS Core and communicate with other developers. If you have any questions about the sample code, try the following: - Visit [Stack Overflow](https://stackoverflow.com/questions/tagged/huawei-mobile-services?tab=Votes), submit your questions, and tag them with `huawei-mobile-services`. Huawei experts will answer your questions. - Visit the HMS Core section in the [HUAWEI Developer Forum](https://forums.developer.huawei.com/forumPortal/en/home?fid=0101187876626530001?ha_source=hms1) and communicate with other developers. If you encounter any issues when using the sample code, submit your [issues](https://github.com/HMS-Core/hms-ads-demo-java/issues) or submit a [pull request](https://github.com/HMS-Core/hms-ads-demo-java/pulls). ## License The sample code is licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0).
1
broken-e/gdx-ui-app
An alternative to libgdx Game and Screen classes with prebuilt scene2d.ui functionality and sample crappy game
null
gdx-ui-app ========== An example very simple game entirely using scene2d.ui. Also has reusable classes (i.e. UiApp and BaseScreen) to get a new game started with screens that transition. It wouldn't fit every case, for example if you wanted to use an AssetLoader. NOTE: This code works but there might be issues or better ways to do things. Use as an example or as you wish.
1
JeroenMols/MethodCountExample
Sample project to shrink huge libraries and reduce their method count.
null
# MethodCountExample Sample project to shrink huge libraries and reduce their method count. Please find more details in [this blogpost](http://jeroenmols.com//blog/2016/05/06/methodcount/).
1
andforce/AppleSampleCode
https://developer.apple.com/library/content/navigation/index.html#section=Resource%20Types&topic=Sample%20Code
null
# AppleSampleCode Mirror of [Apple Sample Code](https://developer.apple.com/library/content/navigation/index.html#section=Resource%20Types&amp;topic=Sample%20Code) | 名称 | 平台&下载 | 最后更新时间 | | ----- | ----- | -----: | | [2BufRecordBufferCmd](https://developer.apple.com/library/archive/samplecode/2BufRecordBufferCmd/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000341) | [macOS](https://developer.apple.com/library/archive/samplecode/2BufRecordBufferCmd/2BufRecordBufferCmd.zip) | 2003-01-14 | | [2BufRecordSndPlay](https://developer.apple.com/library/archive/samplecode/2BufRecordSndPlay/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000342) | [macOS](https://developer.apple.com/library/archive/samplecode/2BufRecordSndPlay/2BufRecordSndPlay.zip) | 2003-01-14 | | [3D Rotation Controller](https://developer.apple.com/library/archive/samplecode/3D_Rotation_Controller/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000124) | [macOS](https://developer.apple.com/library/archive/samplecode/3D_Rotation_Controller/3D_Rotation_Controller.zip) | 2003-01-14 | | [3DMF2PICT](https://developer.apple.com/library/archive/samplecode/3DMF2PICT/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000106) | [macOS](https://developer.apple.com/library/archive/samplecode/3DMF2PICT/3DMF2PICT.zip) | 2003-01-14 | | [7Edit](https://developer.apple.com/library/archive/samplecode/7Edit/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000200) | [macOS](https://developer.apple.com/library/archive/samplecode/7Edit/7Edit.zip) | 2003-07-22 | | [ABPresence](https://developer.apple.com/library/archive/samplecode/ABPresence/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004061) | [macOS](https://developer.apple.com/library/archive/samplecode/ABPresence/ABPresence.zip) | 2006-08-04 | | [ABUIGroups](https://developer.apple.com/library/archive/samplecode/ABUIGroups/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011307) | [iOS](https://developer.apple.com/library/archive/samplecode/ABUIGroups/ABUIGroups.zip) | 2013-07-29 | | [ADB Key Spy](https://developer.apple.com/library/archive/samplecode/ADB_Key_Spy/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000004) | [macOS](https://developer.apple.com/library/archive/samplecode/ADB_Key_Spy/ADB_Key_Spy.zip) | 2003-01-14 | | [ADSP Chat](https://developer.apple.com/library/archive/samplecode/ADSP_Chat/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000224) | [macOS](https://developer.apple.com/library/archive/samplecode/ADSP_Chat/ADSP_Chat.zip) | 2003-01-14 | | [AECoercion](https://developer.apple.com/library/archive/samplecode/AECoercion/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000202) | [macOS](https://developer.apple.com/library/archive/samplecode/AECoercion/AECoercion.zip) | 2003-07-22 | | [AEGestalt](https://developer.apple.com/library/archive/samplecode/AEGestalt/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000203) | [macOS](https://developer.apple.com/library/archive/samplecode/AEGestalt/AEGestalt.zip) | 2003-01-14 | | [AEObject-Edition Sample](https://developer.apple.com/library/archive/samplecode/AEObject-Edition_Sample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000204) | [macOS](https://developer.apple.com/library/archive/samplecode/AEObject-Edition_Sample/AEObject-Edition_Sample.zip) | 2003-01-14 | | [AESendThreadSafe](https://developer.apple.com/library/archive/samplecode/AESendThreadSafe/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004229) | [macOS](https://developer.apple.com/library/archive/samplecode/AESendThreadSafe/AESendThreadSafe.zip) | 2007-03-09 | | [AESendandReceive](https://developer.apple.com/library/archive/samplecode/AESendandReceive/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000676) | [macOS](https://developer.apple.com/library/archive/samplecode/AESendandReceive/AESendandReceive.zip) | 2003-01-14 | | [AGLSurfaceTexture](https://developer.apple.com/library/archive/samplecode/AGLSurfaceTexture/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000508) | [macOS](https://developer.apple.com/library/archive/samplecode/AGLSurfaceTexture/AGLSurfaceTexture.zip) | 2003-07-07 | | [AIFFWriter](https://developer.apple.com/library/archive/samplecode/AIFFWriter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000904) | [macOS](https://developer.apple.com/library/archive/samplecode/AIFFWriter/AIFFWriter.zip) | 2003-01-14 | | [ALaw sdec scom](https://developer.apple.com/library/archive/samplecode/ALaw_sdec_scom/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000357) | [macOS](https://developer.apple.com/library/archive/samplecode/ALaw_sdec_scom/ALaw_sdec_scom.zip) | 2003-03-14 | | [APFSCloning: Using clone APIs with APFS](https://developer.apple.com/library/archive/samplecode/APFSCloning/Introduction/Intro.html#//apple_ref/doc/uid/TP40017341) | [macOS](https://developer.apple.com/library/archive/samplecode/APFSCloningUsingcloneAPIswithAPFS/APFSCloningUsingcloneAPIswithAPFS.zip) | 2016-09-13 | | [AQOfflineRenderTest](https://developer.apple.com/library/archive/samplecode/AQOfflineRenderTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008413) | [iOS](https://developer.apple.com/library/archive/samplecode/AQOfflineRenderTest/AQOfflineRenderTest.zip) | 2010-06-28 | | [ARPSample](https://developer.apple.com/library/archive/samplecode/ARPSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000227) | [macOS](https://developer.apple.com/library/archive/samplecode/ARPSample/ARPSample.zip) | 2003-07-22 | | [ASCIIMoviePlayerSample](https://developer.apple.com/library/archive/samplecode/ASCIIMoviePlayerSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000842) | [macOS](https://developer.apple.com/library/archive/samplecode/ASCIIMoviePlayerSample/ASCIIMoviePlayerSample.zip) | 2009-04-21 | | [ASCIIMoviePlayerSample for Windows](https://developer.apple.com/library/archive/samplecode/ASCIIMoviePlayerSample.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003569) | [macOS](https://developer.apple.com/library/archive/samplecode/ASCIIMoviePlayerSample/ASCIIMoviePlayerSample.win.zip) | 2005-05-05 | | [ASLM C++](https://developer.apple.com/library/archive/samplecode/ASLM_C++/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000280) | [Xcode Developer Tools](https://developer.apple.com/library/archive/samplecode/ASLM_C++/ASLM_C++.zip) | 2003-01-14 | | [ASOCTaskList](https://developer.apple.com/library/archive/samplecode/ASOCTaskList/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009298) | [macOS](https://developer.apple.com/library/archive/samplecode/ASOCTaskList/ASOCTaskList.zip) | 2009-10-14 | | [ATADemo](https://developer.apple.com/library/archive/samplecode/ATADemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000418) | [macOS](https://developer.apple.com/library/archive/samplecode/ATADemo/ATADemo.zip) | 2003-01-14 | | [ATAErrorDetector](https://developer.apple.com/library/archive/samplecode/ATAErrorDetector/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000419) | [macOS](https://developer.apple.com/library/archive/samplecode/ATAErrorDetector/ATAErrorDetector.zip) | 2003-01-14 | | [ATP Demo](https://developer.apple.com/library/archive/samplecode/ATP_Demo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000228) | [macOS](https://developer.apple.com/library/archive/samplecode/ATP_Demo/ATP_Demo.zip) | 2003-01-14 | | [ATSUICurveAccessDemo](https://developer.apple.com/library/archive/samplecode/ATSUICurveAccessDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001091) | [macOS](https://developer.apple.com/library/archive/samplecode/ATSUICurveAccessDemo/ATSUICurveAccessDemo.zip) | 2003-01-14 | | [ATSUIDirectAccessDemo](https://developer.apple.com/library/archive/samplecode/ATSUIDirectAccessDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001092) | [macOS](https://developer.apple.com/library/archive/samplecode/ATSUIDirectAccessDemo/ATSUIDirectAccessDemo.zip) | 2003-01-14 | | [AUTimePitchTest](https://developer.apple.com/library/archive/samplecode/AUTimePitchTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010396) | [macOS](https://developer.apple.com/library/archive/samplecode/AUTimePitchTest/AUTimePitchTest.zip) | 2012-08-21 | | [AVARLDelegateDemo](https://developer.apple.com/library/archive/samplecode/sc1791/Introduction/Intro.html#//apple_ref/doc/uid/DTS40014357) | [iOS](https://developer.apple.com/library/archive/samplecode/AVARLDelegateDemo/AVARLDelegateDemo.zip) | 2014-04-18 | | [AVAudioEngine 3D Audio Example](https://developer.apple.com/library/archive/samplecode/AVAEGamingExample/Introduction/Intro.html#//apple_ref/doc/uid/TP40015163) | [tvOS\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/AVAudioEngine3DAudioExample/AVAudioEngine3DAudioExample.zip) | 2016-11-03 | | [AVAutoWait: Using AVFoundation to play HTTP assets with minimal stalls](https://developer.apple.com/library/archive/samplecode/AVAutoWait/Introduction/Intro.html#//apple_ref/doc/uid/TP40017477) | [iOS](https://developer.apple.com/library/archive/samplecode/AVAutoWaitUsingAVFoundationtoplayHTTPassetswithminimalstalls/AVAutoWaitUsingAVFoundationtoplayHTTPassetswithminimalstalls.zip) | 2016-09-13 | | [AVBNetworkBrowser](https://developer.apple.com/library/archive/samplecode/sc1827/Introduction/Intro.html#//apple_ref/doc/uid/DTS40014220) | [macOS](https://developer.apple.com/library/archive/samplecode/AVBNetworkBrowser/AVBNetworkBrowser.zip) | 2014-03-20 | | [AVCam-iOS: Using AVFoundation to Capture Images and Movies](https://developer.apple.com/library/archive/samplecode/AVCam/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010112) | [iOS](https://developer.apple.com/library/archive/samplecode/AVCam-iOSUsingAVFoundationtoCaptureImagesandMovies/AVCam-iOSUsingAVFoundationtoCaptureImagesandMovies.zip) | 2017-06-06 | | [AVCamBarcode: Using AVFoundation to Detect Barcodes and Faces](https://developer.apple.com/library/archive/samplecode/AVCamBarcode/Introduction/Intro.html#//apple_ref/doc/uid/TP40017312) | [iOS](https://developer.apple.com/library/archive/samplecode/AVCamBarcodeUsingAVFoundationtoDetectBarcodesandFaces/AVCamBarcodeUsingAVFoundationtoDetectBarcodesandFaces.zip) | 2017-09-19 | | [AVCamManual: Extending AVCam to Use Manual Capture API](https://developer.apple.com/library/archive/samplecode/AVCamManual/Introduction/Intro.html#//apple_ref/doc/uid/TP40014578) | [iOS](https://developer.apple.com/library/archive/samplecode/AVCamManualExtendingAVCamtoUseManualCaptureAPI/AVCamManualExtendingAVCamtoUseManualCaptureAPI.zip) | 2016-09-15 | | [AVCamPhotoFilter: Using AVFoundation to Capture photos with image processing](https://developer.apple.com/library/archive/samplecode/AVCamPhotoFilter/Introduction/Intro.html#//apple_ref/doc/uid/TP40017556) | [iOS](https://developer.apple.com/library/archive/samplecode/AVCamPhotoFilterUsingAVFoundationtoCapturephotoswithimageprocessing/AVCamPhotoFilterUsingAVFoundationtoCapturephotoswithimageprocessing.zip) | 2017-09-19 | | [AVCaptureAudioDataOutput To AudioUnit OS X](https://developer.apple.com/library/archive/samplecode/AVCaptureToAudioUnitOSX/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012879) | [macOS](https://developer.apple.com/library/archive/samplecode/AVCaptureToAudioUnitOSX/AVCaptureToAudioUnitOSX.zip) | 2012-10-04 | | [AVCaptureAudioDataOutput To AudioUnit iOS](https://developer.apple.com/library/archive/samplecode/AVCaptureToAudioUnit/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012880) | [iOS](https://developer.apple.com/library/archive/samplecode/AVCaptureToAudioUnit/AVCaptureToAudioUnit.zip) | 2012-10-08 | | [AVCompositionDebugViewer](https://developer.apple.com/library/archive/samplecode/AVCompositionDebugViewer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013400) | [macOS](https://developer.apple.com/library/archive/samplecode/AVCompositionDebugViewer/AVCompositionDebugViewer.zip) | 2013-06-07 | | [AVCompositionDebugVieweriOS](https://developer.apple.com/library/archive/samplecode/AVCompositionDebugVieweriOS/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013421) | [iOS](https://developer.apple.com/library/archive/samplecode/AVCompositionDebugVieweriOS/AVCompositionDebugVieweriOS.zip) | 2014-03-11 | | [AVCustomEdit](https://developer.apple.com/library/archive/samplecode/AVCustomEdit/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013411) | [iOS](https://developer.apple.com/library/archive/samplecode/AVCustomEdit/AVCustomEdit.zip) | 2017-08-17 | | [AVCustomEditOSX](https://developer.apple.com/library/archive/samplecode/AVCustomEditOSX/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013408) | [macOS](https://developer.apple.com/library/archive/samplecode/AVCustomEditOSX/AVCustomEditOSX.zip) | 2013-07-26 | | [AVFoundation - Timecode Reader/Writer (avtimecodereadwrite)](https://developer.apple.com/library/archive/samplecode/avtimecodereadwrite/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013350) | [macOS](https://developer.apple.com/library/archive/samplecode/avtimecodereadwrite/avtimecodereadwrite.zip) | 2014-01-22 | | [AVFoundation Looping Player: Using AVQueuePlayer and AVPlayerLooper to demonstrate loop playback](https://developer.apple.com/library/archive/samplecode/avloopplayer/Introduction/Intro.html#//apple_ref/doc/uid/TP40014695) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/AVFoundationLoopingPlayerUsingAVQueuePlayerandAVPlayerLoopertodemonstrateloopplayback/AVFoundationLoopingPlayerUsingAVQueuePlayerandAVPlayerLoopertodemonstrateloopplayback.zip) | 2016-09-13 | | [AVFoundationExporter: Exporting and Transcoding Movies](https://developer.apple.com/library/archive/samplecode/avexporter/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011051) | [macOS](https://developer.apple.com/library/archive/samplecode/AVFoundationExporterExportingandTranscodingMovies/AVFoundationExporterExportingandTranscodingMovies.zip) | 2016-09-13 | | [AVFoundationPiPPlayer: Picture-in-Picture Playback with AVKit](https://developer.apple.com/library/archive/samplecode/AVFoundationPiPPlayer/Introduction/Intro.html#//apple_ref/doc/uid/TP40016166) | [iOS](https://developer.apple.com/library/archive/samplecode/AVFoundationPiPPlayerPicture-in-PicturePlaybackwithAVKit/AVFoundationPiPPlayerPicture-in-PicturePlaybackwithAVKit.zip) | 2018-02-08 | | [AVFoundationQueuePlayer-iOS: Using a Mixture of Local File Based Assets and HTTP Live Streaming Assets with AVFoundation](https://developer.apple.com/library/archive/samplecode/AVFoundationQueuePlayer-iOS/Introduction/Intro.html#//apple_ref/doc/uid/TP40016104) | [iOS](https://developer.apple.com/library/archive/samplecode/AVFoundationQueuePlayer-iOSUsingaMixtureofLocalFileBasedAssetsandHTTPLiveStreamingAssetswithAVFoundation/AVFoundationQueuePlayer-iOSUsingaMixtureofLocalFileBasedAssetsandHTTPLiveStreamingAssetswithAVFoundation.zip) | 2016-09-13 | | [AVFoundationSimplePlayer-iOS: Using AVFoundation to Play Media](https://developer.apple.com/library/archive/samplecode/AVFoundationSimplePlayer-iOS/Introduction/Intro.html#//apple_ref/doc/uid/TP40016103) | [iOS](https://developer.apple.com/library/archive/samplecode/AVFoundationSimplePlayer-iOSUsingAVFoundationtoPlayMedia/AVFoundationSimplePlayer-iOSUsingAVFoundationtoPlayMedia.zip) | 2016-09-13 | | [AVGreenScreenPlayer](https://developer.apple.com/library/archive/samplecode/AVGreenScreenPlayer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012325) | [macOS](https://developer.apple.com/library/archive/samplecode/AVGreenScreenPlayer/AVGreenScreenPlayer.zip) | 2014-08-20 | | [AVKitPlayer for OSX](https://developer.apple.com/library/archive/samplecode/AVKitPlayerOSX/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013406) | [macOS](https://developer.apple.com/library/archive/samplecode/AVKitPlayerOSX/AVKitPlayerOSX.zip) | 2013-06-07 | | [AVLegibleMeanings for OSX](https://developer.apple.com/library/archive/samplecode/AVLegibleMeaningsOSX/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013407) | [macOS](https://developer.apple.com/library/archive/samplecode/AVLegibleMeaningsOSX/AVLegibleMeaningsOSX.zip) | 2013-06-07 | | [AVLocationPlayer: Using AVFoundation Metadata Reading APIs](https://developer.apple.com/library/archive/samplecode/AVLocationPlayer/Introduction/Intro.html#//apple_ref/doc/uid/TP40014495) | [macOS](https://developer.apple.com/library/archive/samplecode/AVLocationPlayerUsingAVFoundationMetadataReadingAPIs/AVLocationPlayerUsingAVFoundationMetadataReadingAPIs.zip) | 2015-04-30 | | [AVLoupe](https://developer.apple.com/library/archive/samplecode/AVLoupe/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012894) | [iOS](https://developer.apple.com/library/archive/samplecode/AVLoupe/AVLoupe.zip) | 2016-08-12 | | [AVMediaSelectionDemo](https://developer.apple.com/library/archive/samplecode/AVMediaSelectionDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013405) | [macOS](https://developer.apple.com/library/archive/samplecode/AVMediaSelectionDemo/AVMediaSelectionDemo.zip) | 2013-06-07 | | [AVMetadataRecordPlay: Timed Metadata Capture Recording and Playback](https://developer.apple.com/library/archive/samplecode/AVMetadataRecordPlay/Introduction/Intro.html#//apple_ref/doc/uid/TP40016165) | [iOS](https://developer.apple.com/library/archive/samplecode/AVMetadataRecordPlayTimedMetadataCaptureRecordingandPlayback/AVMetadataRecordPlayTimedMetadataCaptureRecordingandPlayback.zip) | 2017-03-09 | | [AVMovieEditor: Editing the QuickTime File Format](https://developer.apple.com/library/archive/samplecode/AVMovieEditor/Introduction/Intro.html#//apple_ref/doc/uid/TP40016208) | [macOS](https://developer.apple.com/library/archive/samplecode/AVMovieEditorEditingtheQuickTimeFileFormat/AVMovieEditorEditingtheQuickTimeFileFormat.zip) | 2015-09-16 | | [AVMovieExporter](https://developer.apple.com/library/archive/samplecode/AVMovieExporter/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011364) | [iOS](https://developer.apple.com/library/archive/samplecode/AVMovieExporter/AVMovieExporter.zip) | 2011-11-29 | | [AVPlayerDemo](https://developer.apple.com/library/archive/samplecode/AVPlayerDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010101) | [iOS](https://developer.apple.com/library/archive/samplecode/AVPlayerDemo/AVPlayerDemo.zip) | 2014-07-08 | | [AVReaderWriter: Offline Audio / Video Processing](https://developer.apple.com/library/archive/samplecode/ReaderWriter/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011124) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/AVReaderWriterOfflineAudioVideoProcessing/AVReaderWriterOfflineAudioVideoProcessing.zip) | 2016-09-13 | | [AVRecorder](https://developer.apple.com/library/archive/samplecode/AVRecorder/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011004) | [macOS](https://developer.apple.com/library/archive/samplecode/AVRecorder/AVRecorder.zip) | 2012-11-29 | | [AVScreenShack](https://developer.apple.com/library/archive/samplecode/AVScreenShack/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011120) | [macOS](https://developer.apple.com/library/archive/samplecode/AVScreenShack/AVScreenShack.zip) | 2014-04-29 | | [AVSimpleEditorOSX](https://developer.apple.com/library/archive/samplecode/AVSimpleEditorOSX/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012253) | [macOS](https://developer.apple.com/library/archive/samplecode/AVSimpleEditorOSX/AVSimpleEditorOSX.zip) | 2012-05-18 | | [AVSimpleEditoriOS](https://developer.apple.com/library/archive/samplecode/AVSimpleEditoriOS/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012797) | [iOS](https://developer.apple.com/library/archive/samplecode/AVSimpleEditoriOS/AVSimpleEditoriOS.zip) | 2013-08-22 | | [AVSimplePlayer](https://developer.apple.com/library/archive/samplecode/AVSimplePlayerOSX/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011060) | [macOS](https://developer.apple.com/library/archive/samplecode/AVSimplePlayerOSX/AVSimplePlayerOSX.zip) | 2014-07-09 | | [AVTimedAnnotationWriter: Using Custom Annotation Metadata for Movie Writing and Playback](https://developer.apple.com/library/archive/samplecode/AVTimedAnnotationWriter/Introduction/Intro.html#//apple_ref/doc/uid/TP40014496) | [iOS](https://developer.apple.com/library/archive/samplecode/AVTimedAnnotationWriterUsingCustomAnnotationMetadataforMovieWritingandPlayback/AVTimedAnnotationWriterUsingCustomAnnotationMetadataforMovieWritingandPlayback.zip) | 2014-09-17 | | [AbstractTree](https://developer.apple.com/library/archive/samplecode/AbstractTree/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004546) | [macOS](https://developer.apple.com/library/archive/samplecode/AbstractTree/AbstractTree.zip) | 2009-07-24 | | [AccelerometerGraph](https://developer.apple.com/library/archive/samplecode/AccelerometerGraph/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007410) | [iOS](https://developer.apple.com/library/archive/samplecode/AccelerometerGraph/AccelerometerGraph.zip) | 2013-07-15 | | [AccessibilityUIExamples](https://developer.apple.com/library/archive/samplecode/AccessibilityUIExamples/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012307) | [macOS](https://developer.apple.com/library/archive/samplecode/AccessibilityUIExamples/AccessibilityUIExamples.zip) | 2017-09-12 | | [Activity Rings: Contributing to Activity Rings on Apple Watch](https://developer.apple.com/library/archive/samplecode/ActivityRings/Introduction/Intro.html#//apple_ref/doc/uid/TP40016623) | [watchOS\|iOS](https://developer.apple.com/library/archive/samplecode/ActivityRingsContributingtoActivityRingsonAppleWatch/ActivityRingsContributingtoActivityRingsonAppleWatch.zip) | 2016-09-13 | | [AdaptiveElements: Implementing Your Own Adaptive Design with UIKit](https://developer.apple.com/library/archive/samplecode/AdaptiveElements/Introduction/Intro.html#//apple_ref/doc/uid/TP40017300) | [iOS](https://developer.apple.com/library/archive/samplecode/AdaptiveElementsImplementingYourOwnAdaptiveDesignwithUIKit/AdaptiveElementsImplementingYourOwnAdaptiveDesignwithUIKit.zip) | 2016-09-13 | | [AdaptivePhotos: Using UIKit Traits and Size Classes](https://developer.apple.com/library/archive/samplecode/AdaptivePhotos/Introduction/Intro.html#//apple_ref/doc/uid/TP40014636) | [iOS](https://developer.apple.com/library/archive/samplecode/AdaptivePhotosUsingUIKitTraitsandSizeClasses/AdaptivePhotosUsingUIKitTraitsandSizeClasses.zip) | 2016-09-13 | | [AddFrameToMovie](https://developer.apple.com/library/archive/samplecode/AddFrameToMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000760) | [macOS](https://developer.apple.com/library/archive/samplecode/AddFrameToMovie/AddFrameToMovie.zip) | 2003-01-14 | | [AddMusic](https://developer.apple.com/library/archive/samplecode/AddMusic/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008845) | [iOS](https://developer.apple.com/library/archive/samplecode/AddMusic/AddMusic.zip) | 2009-10-01 | | [AddNibToNav](https://developer.apple.com/library/archive/samplecode/AddNibToNav/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003158) | [macOS](https://developer.apple.com/library/archive/samplecode/AddNibToNav/AddNibToNav.zip) | 2004-01-22 | | [AddTextMovie](https://developer.apple.com/library/archive/samplecode/AddTextMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000926) | [macOS](https://developer.apple.com/library/archive/samplecode/AddTextMovie/AddTextMovie.zip) | 2006-06-28 | | [AddressBookCarbon](https://developer.apple.com/library/archive/samplecode/AddressBookCarbon/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000659) | [macOS](https://developer.apple.com/library/archive/samplecode/AddressBookCarbon/AddressBookCarbon.zip) | 2003-01-14 | | [AddressBookCocoa](https://developer.apple.com/library/archive/samplecode/AddressBookCocoa/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000660) | [macOS](https://developer.apple.com/library/archive/samplecode/AddressBookCocoa/AddressBookCocoa.zip) | 2013-08-13 | | [Adopting Metal I: A practical approach to your first Metal app](https://developer.apple.com/library/archive/samplecode/AdoptingMetalI/Introduction/Intro.html#//apple_ref/doc/uid/TP40017287) | [tvOS\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/AdoptingMetalIApracticalapproachtoyourfirstMetalapp/AdoptingMetalIApracticalapproachtoyourfirstMetalapp.zip) | 2016-09-13 | | [Adopting Metal II: Designing and Implementing a Real-World Metal Renderer](https://developer.apple.com/library/archive/samplecode/AdoptingMetalII/Introduction/Intro.html#//apple_ref/doc/uid/TP40017288) | [tvOS\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/AdoptingMetalIIDesigningandImplementingaReal-WorldMetalRenderer/AdoptingMetalIIDesigningandImplementingaReal-WorldMetalRenderer.zip) | 2016-09-13 | | [Advanced UISearchBar](https://developer.apple.com/library/archive/samplecode/AdvancedTableSearch/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013493) | [iOS](https://developer.apple.com/library/archive/samplecode/AdvancedUISearchBar/AdvancedUISearchBar.zip) | 2013-07-24 | | [AdvancedTableViewCells](https://developer.apple.com/library/archive/samplecode/AdvancedTableViewCells/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009111) | [iOS](https://developer.apple.com/library/archive/samplecode/AdvancedTableViewCells/AdvancedTableViewCells.zip) | 2011-01-11 | | [AdvancedURLConnections](https://developer.apple.com/library/archive/samplecode/AdvancedURLConnections/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009558) | [iOS](https://developer.apple.com/library/archive/samplecode/AdvancedURLConnections/AdvancedURLConnections.zip) | 2011-01-26 | | [AgentsCatalog: Using the Agents System in GameplayKit](https://developer.apple.com/library/archive/samplecode/AgentsCatalog/Introduction/Intro.html#//apple_ref/doc/uid/TP40016141) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/AgentsCatalogUsingtheAgentsSysteminGameplayKit/AgentsCatalogUsingtheAgentsSysteminGameplayKit.zip) | 2015-09-16 | | [AirDrop Examples](https://developer.apple.com/library/archive/samplecode/sc2273/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013842) | [iOS](https://developer.apple.com/library/archive/samplecode/AirDropSample/AirDropSample.zip) | 2013-10-17 | | [AirLocate: Using CoreLocation to monitor, range, and configure your device as an iBeacon](https://developer.apple.com/library/archive/samplecode/AirLocate/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013430) | [iOS](https://developer.apple.com/library/archive/samplecode/AirLocate/AirLocate.zip) | 2014-01-06 | | [AlbumToSlideshow](https://developer.apple.com/library/archive/samplecode/AlbumToSlideshow/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003729) | [macOS](https://developer.apple.com/library/archive/samplecode/AlbumToSlideshow/AlbumToSlideshow.zip) | 2008-05-15 | | [AlignmentGuides: AppKit Haptic Feedback Filtering using NSAlignmentFeedbackFilter](https://developer.apple.com/library/archive/samplecode/AlignmentGuides/Introduction/Intro.html#//apple_ref/doc/uid/TP40016087) | [macOS](https://developer.apple.com/library/archive/samplecode/AlignmentGuidesAppKitHapticFeedbackFilteringusingNSAlignmentFeedbackFilter/AlignmentGuidesAppKitHapticFeedbackFilteringusingNSAlignmentFeedbackFilter.zip) | 2017-09-19 | | [Alternate Views](https://developer.apple.com/library/archive/samplecode/AlternateViews/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008755) | [iOS](https://developer.apple.com/library/archive/samplecode/AlternateViews/AlternateViews.zip) | 2014-04-02 | | [AlwaysPreview](https://developer.apple.com/library/archive/samplecode/AlwaysPreview/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000761) | [macOS](https://developer.apple.com/library/archive/samplecode/AlwaysPreview/AlwaysPreview.zip) | 2003-01-14 | | [Anima](https://developer.apple.com/library/archive/samplecode/Anima/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000065) | [macOS](https://developer.apple.com/library/archive/samplecode/Anima/Anima.zip) | 2003-10-10 | | [Animalify: Using Safari App Extensions to modify pages and communicate with native code](https://developer.apple.com/library/archive/samplecode/Animalify/Introduction/Intro.html#//apple_ref/doc/uid/TP40017383) | [macOS](https://developer.apple.com/library/archive/samplecode/AnimalifyUsingSafariAppExtensionstomodifypagesandcommunicatewithnativecode/AnimalifyUsingSafariAppExtensionstomodifypagesandcommunicatewithnativecode.zip) | 2016-11-03 | | [AnimatedSlider](https://developer.apple.com/library/archive/samplecode/AnimatedSlider/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000378) | [macOS](https://developer.apple.com/library/archive/samplecode/AnimatedSlider/AnimatedSlider.zip) | 2011-07-18 | | [AnimatedTableView](https://developer.apple.com/library/archive/samplecode/AnimatedTableView/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008863) | [macOS](https://developer.apple.com/library/archive/samplecode/AnimatedTableView/AnimatedTableView.zip) | 2012-05-31 | | [AnimatingViews](https://developer.apple.com/library/archive/samplecode/AnimatingViews/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008879) | [macOS](https://developer.apple.com/library/archive/samplecode/AnimatingViews/AnimatingViews.zip) | 2012-06-05 | | [Aperture Edit Plugin - Borders &amp; Titles](https://developer.apple.com/library/archive/samplecode/BordersAndTitles/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007733) | [macOS](https://developer.apple.com/library/archive/samplecode/BordersAndTitles/BordersAndTitles.zip) | 2008-06-02 | | [Aperture Image Resizer](https://developer.apple.com/library/archive/samplecode/ApertureResizer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004358) | [macOS](https://developer.apple.com/library/archive/samplecode/ApertureResizer/ApertureResizer.zip) | 2007-06-08 | | [AppChat: Using Peek and Pop APIs](https://developer.apple.com/library/archive/samplecode/AppChat/Introduction/Intro.html#//apple_ref/doc/uid/TP40017298) | [iOS](https://developer.apple.com/library/archive/samplecode/AppChatUsingPeekandPopAPIs/AppChatUsingPeekandPopAPIs.zip) | 2016-10-27 | | [AppList](https://developer.apple.com/library/archive/samplecode/AppList/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008859) | [macOS](https://developer.apple.com/library/archive/samplecode/AppList/AppList.zip) | 2014-05-06 | | [AppPrefs: Storing and Retrieving User Preferences](https://developer.apple.com/library/archive/samplecode/AppPrefs/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007799) | [iOS](https://developer.apple.com/library/archive/samplecode/AppPrefsStoringandRetrievingUserPreferences/AppPrefsStoringandRetrievingUserPreferences.zip) | 2014-09-17 | | [AppSandboxLoginItemXPCDemo](https://developer.apple.com/library/archive/samplecode/AppSandboxLoginItemXPCDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012292) | [macOS](https://developer.apple.com/library/archive/samplecode/AppSandboxLoginItemXPCDemo/AppSandboxLoginItemXPCDemo.zip) | 2012-06-09 | | [AppearanceSampleUpdated](https://developer.apple.com/library/archive/samplecode/AppearanceSampleUpdated/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003689) | [Xcode Developer Tools\|macOS](https://developer.apple.com/library/archive/samplecode/AppearanceSampleUpdated/AppearanceSampleUpdated.zip) | 2005-06-27 | | [AppleEvent Send and Receive](https://developer.apple.com/library/archive/samplecode/AppleEvent_Send_and_Receive/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000215) | [macOS](https://developer.apple.com/library/archive/samplecode/AppleEvent_Send_and_Receive/AppleEvent_Send_and_Receive.zip) | 2003-07-22 | | [AppleFWAudio Vendor Specific Override Driver](https://developer.apple.com/library/archive/samplecode/AFWAVendorSpecificDriver/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004349) | [macOS](https://developer.apple.com/library/archive/samplecode/AFWAVendorSpecificDriver/AFWAVendorSpecificDriver.zip) | 2007-06-01 | | [AppleJavaExtensions](https://developer.apple.com/library/archive/samplecode/AppleJavaExtensions/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000677) | [macOS](https://developer.apple.com/library/archive/samplecode/AppleJavaExtensions/AppleJavaExtensions.zip) | 2011-11-10 | | [AppleScriptRunner](https://developer.apple.com/library/archive/samplecode/AppleScriptRunner/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003441) | [macOS](https://developer.apple.com/library/archive/samplecode/AppleScriptRunner/AppleScriptRunner.zip) | 2006-07-31 | | [AppleTalk Libraries](https://developer.apple.com/library/archive/samplecode/AppleTalk_Libraries/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000226) | [macOS](https://developer.apple.com/library/archive/samplecode/AppleTalk_Libraries/AppleTalk_Libraries.zip) | 2003-01-14 | | [Application Icons and Launch Images for iOS](https://developer.apple.com/library/archive/samplecode/Icons/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010442) | [iOS](https://developer.apple.com/library/archive/samplecode/ApplicationIconsandLaunchImagesforiOS/ApplicationIconsandLaunchImagesforiOS.zip) | 2017-03-27 | | [ApplicationShortcuts: Using UIApplicationShortcutItems](https://developer.apple.com/library/archive/samplecode/ApplicationShortcuts/Introduction/Intro.html#//apple_ref/doc/uid/TP40016545) | [iOS](https://developer.apple.com/library/archive/samplecode/ApplicationShortcutsUsingUIApplicationShortcutItems/ApplicationShortcutsUsingUIApplicationShortcutItems.zip) | 2017-12-14 | | [Apply Firmware Password](https://developer.apple.com/library/archive/samplecode/ApplyFirmwarePassword/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004360) | [macOS](https://developer.apple.com/library/archive/samplecode/ApplyFirmwarePassword/ApplyFirmwarePassword.zip) | 2007-06-12 | | [AstroLayout: Building Adaptive UI with Auto Layout](https://developer.apple.com/library/archive/samplecode/AstroLayout/Introduction/Intro.html#//apple_ref/doc/uid/TP40016193) | [iOS](https://developer.apple.com/library/archive/samplecode/AstroLayoutBuildingAdaptiveUIwithAutoLayout/AstroLayoutBuildingAdaptiveUIwithAutoLayout.zip) | 2015-09-16 | | [AsyncDriverSample](https://developer.apple.com/library/archive/samplecode/AsyncDriverSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000438) | [macOS](https://developer.apple.com/library/archive/samplecode/AsyncDriverSample/AsyncDriverSample.zip) | 2003-01-14 | | [AsyncPB](https://developer.apple.com/library/archive/samplecode/AsyncPB/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000471) | [macOS](https://developer.apple.com/library/archive/samplecode/AsyncPB/AsyncPB.zip) | 2003-10-27 | | [AttachAScript](https://developer.apple.com/library/archive/samplecode/AttachAScript/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003911) | [macOS](https://developer.apple.com/library/archive/samplecode/AttachAScript/AttachAScript.zip) | 2011-07-14 | | [Audio CD Tool](https://developer.apple.com/library/archive/samplecode/Audio_CD_Tool/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000009) | [macOS](https://developer.apple.com/library/archive/samplecode/Audio_CD_Tool/Audio_CD_Tool.zip) | 2003-01-14 | | [Audio Codec Examples](https://developer.apple.com/library/archive/samplecode/AudioCodecExamples/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012991) | [macOS](https://developer.apple.com/library/archive/samplecode/AudioCodecExamples/AudioCodecExamples.zip) | 2013-01-02 | | [Audio Converter File Convert Test](https://developer.apple.com/library/archive/samplecode/iPhoneACFileConvertTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010581) | [iOS](https://developer.apple.com/library/archive/samplecode/AudioConverterFileConvertTest/AudioConverterFileConvertTest.zip) | 2016-09-29 | | [Audio Toolbox Convert File](https://developer.apple.com/library/archive/samplecode/ConvertFile/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008649) | [watchOS\|macOS](https://developer.apple.com/library/archive/samplecode/AudioToolboxConvertFile/AudioToolboxConvertFile.zip) | 2016-09-29 | | [Audio Unit Effect Templates](https://developer.apple.com/library/archive/samplecode/AudioUnitEffectTemplates/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003458) | [macOS](https://developer.apple.com/library/archive/samplecode/AudioUnitEffectTemplates/AudioUnitEffectTemplates.zip) | 2005-06-06 | | [Audio Unit Examples (AudioUnit Effect, Generator, Instrument, MIDI Processor and Offline)](https://developer.apple.com/library/archive/samplecode/sc2195/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013969) | [macOS](https://developer.apple.com/library/archive/samplecode/AudioUnitExamplesAudioUnitEffectGeneratorInstrumentMIDIProcessorandOffline/AudioUnitExamplesAudioUnitEffectGeneratorInstrumentMIDIProcessorandOffline.zip) | 2016-02-19 | | [Audio in ARKit](https://developer.apple.com/library/archive/samplecode/AudioInARKit/Introduction/Intro.html#//apple_ref/doc/uid/TP40017668) | [iOS](https://developer.apple.com/library/archive/samplecode/AudioinARKit/AudioinARKit.zip) | 2018-03-28 | | [AudioBroadcaster](https://developer.apple.com/library/archive/samplecode/AudioBroadcaster/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000928) | [macOS](https://developer.apple.com/library/archive/samplecode/AudioBroadcaster/AudioBroadcaster.zip) | 2003-01-14 | | [AudioBurn](https://developer.apple.com/library/archive/samplecode/AudioBurn/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000461) | [macOS](https://developer.apple.com/library/archive/samplecode/AudioBurn/AudioBurn.zip) | 2012-06-05 | | [AudioCDSample](https://developer.apple.com/library/archive/samplecode/AudioCDSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000420) | [macOS](https://developer.apple.com/library/archive/samplecode/AudioCDSample/AudioCDSample.zip) | 2011-07-26 | | [AudioCodecOld](https://developer.apple.com/library/archive/samplecode/AudioCodecOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000358) | [macOS](https://developer.apple.com/library/archive/samplecode/AudioCodecOld/AudioCodecOld.zip) | 2003-01-14 | | [AudioCodecOld.win](https://developer.apple.com/library/archive/samplecode/AudioCodecOld.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000359) | [macOS](https://developer.apple.com/library/archive/samplecode/AudioCodecOld/AudioCodecOld.win.zip) | 2003-01-14 | | [AudioDataOutputToAudioUnit](https://developer.apple.com/library/archive/samplecode/AudioDataOutputToAudioUnit/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007766) | [macOS](https://developer.apple.com/library/archive/samplecode/AudioDataOutputToAudioUnit/AudioDataOutputToAudioUnit.zip) | 2010-10-26 | | [AudioDeviceNotify](https://developer.apple.com/library/archive/samplecode/AudioDeviceNotify/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003925) | [macOS](https://developer.apple.com/library/archive/samplecode/AudioDeviceNotify/AudioDeviceNotify.zip) | 2012-11-29 | | [AudioFileStreamExample](https://developer.apple.com/library/archive/samplecode/AudioFileStreamExample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008648) | [macOS](https://developer.apple.com/library/archive/samplecode/AudioFileStreamExample/AudioFileStreamExample.zip) | 2013-06-29 | | [AudioQueueTools](https://developer.apple.com/library/archive/samplecode/AudioQueueTools/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004380) | [macOS](https://developer.apple.com/library/archive/samplecode/AudioQueueTools/AudioQueueTools.zip) | 2012-07-17 | | [AudioReflectorDriver](https://developer.apple.com/library/archive/samplecode/AudioReflectorDriver/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008750) | [macOS](https://developer.apple.com/library/archive/samplecode/AudioReflectorDriver/AudioReflectorDriver.zip) | 2009-04-21 | | [AudioUnitGeneratorExample](https://developer.apple.com/library/archive/samplecode/AUPinkNoise/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008637) | [macOS](https://developer.apple.com/library/archive/samplecode/AUPinkNoise/AUPinkNoise.zip) | 2012-10-08 | | [AudioUnitInstrumentExample](https://developer.apple.com/library/archive/samplecode/SinSynth/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008641) | [macOS](https://developer.apple.com/library/archive/samplecode/SinSynth/SinSynth.zip) | 2012-10-10 | | [AudioUnitV3Example: A Basic AudioUnit Extension and Host Implementation](https://developer.apple.com/library/archive/samplecode/AudioUnitV3Example/Introduction/Intro.html#//apple_ref/doc/uid/TP40016185) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/AudioUnitV3ExampleABasicAudioUnitExtensionandHostImplementation/AudioUnitV3ExampleABasicAudioUnitExtensionandHostImplementation.zip) | 2016-11-14 | | [AuntieDialog](https://developer.apple.com/library/archive/samplecode/AuntieDialog/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000556) | [macOS](https://developer.apple.com/library/archive/samplecode/AuntieDialog/AuntieDialog.zip) | 2003-01-30 | | [AuthForAll](https://developer.apple.com/library/archive/samplecode/AuthForAll/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001084) | [macOS](https://developer.apple.com/library/archive/samplecode/AuthForAll/AuthForAll.zip) | 2005-10-26 | | [Authenticator](https://developer.apple.com/library/archive/samplecode/Authenticator/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008824) | [macOS](https://developer.apple.com/library/archive/samplecode/Authenticator/Authenticator.zip) | 2012-06-07 | | [Auto-Reader Safari Extension](https://developer.apple.com/library/archive/samplecode/AutoReaderSafariExtension/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011101) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/AutoReaderSafariExtension/AutoReaderSafariExtension.zip) | 2011-06-05 | | [AutoSample](https://developer.apple.com/library/archive/samplecode/AutoSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004313) | [macOS](https://developer.apple.com/library/archive/samplecode/AutoSample/AutoSample.zip) | 2011-09-09 | | [AutoUpdater](https://developer.apple.com/library/archive/samplecode/AutoUpdater/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003617) | [macOS](https://developer.apple.com/library/archive/samplecode/AutoUpdater/AutoUpdater.zip) | 2005-06-01 | | [AutomatorHandsOn](https://developer.apple.com/library/archive/samplecode/AutomatorHandsOn/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004384) | [macOS](https://developer.apple.com/library/archive/samplecode/AutomatorHandsOn/AutomatorHandsOn.zip) | 2007-06-12 | | [BSDLLCTest](https://developer.apple.com/library/archive/samplecode/BSDLLCTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000692) | [macOS](https://developer.apple.com/library/archive/samplecode/BSDLLCTest/BSDLLCTest.zip) | 2003-06-12 | | [BTLE Central Peripheral Transfer](https://developer.apple.com/library/archive/samplecode/BTLE_Transfer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012927) | [iOS](https://developer.apple.com/library/archive/samplecode/BTLE_Transfer/BTLE_Transfer.zip) | 2012-11-15 | | [BackGround](https://developer.apple.com/library/archive/samplecode/BackGround/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000107) | [macOS](https://developer.apple.com/library/archive/samplecode/BackGround/BackGround.zip) | 2003-01-14 | | [BackgroundExporter](https://developer.apple.com/library/archive/samplecode/BackgroundExporter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003356) | [macOS](https://developer.apple.com/library/archive/samplecode/BackgroundExporter/BackgroundExporter.zip) | 2005-07-22 | | [Badger: Advanced Rendering in SceneKit](https://developer.apple.com/library/archive/samplecode/Badger/Introduction/Intro.html#//apple_ref/doc/uid/TP40017309) | [tvOS\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/BadgerAdvancedRenderinginSceneKit/BadgerAdvancedRenderinginSceneKit.zip) | 2016-09-13 | | [Basic Drawing and Event Handling](https://developer.apple.com/library/archive/samplecode/Squiggles/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007956) | [macOS](https://developer.apple.com/library/archive/samplecode/Squiggles/Squiggles.zip) | 2012-07-12 | | [Basic Neural Network Subroutines: Using The Accelerate Framework's Convolution Filters](https://developer.apple.com/library/archive/samplecode/BasicNeuralNetworkSubroutines/Introduction/Intro.html#//apple_ref/doc/uid/TP40017299) | [macOS](https://developer.apple.com/library/archive/samplecode/BasicNeuralNetworkSubroutinesUsingTheAccelerateFrameworksConvolutionFilters/BasicNeuralNetworkSubroutinesUsingTheAccelerateFrameworksConvolutionFilters.zip) | 2016-09-13 | | [BasicCocoaAnimations](https://developer.apple.com/library/archive/samplecode/BasicCocoaAnimations/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004385) | [macOS](https://developer.apple.com/library/archive/samplecode/BasicCocoaAnimations/BasicCocoaAnimations.zip) | 2011-06-28 | | [BasicDataBrowser](https://developer.apple.com/library/archive/samplecode/BasicDataBrowser/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000557) | [macOS](https://developer.apple.com/library/archive/samplecode/BasicDataBrowser/BasicDataBrowser.zip) | 2003-05-08 | | [BasicDiskImage](https://developer.apple.com/library/archive/samplecode/BasicDiskImage/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000425) | [macOS](https://developer.apple.com/library/archive/samplecode/BasicDiskImage/BasicDiskImage.zip) | 2003-01-14 | | [BasicInputMethod](https://developer.apple.com/library/archive/samplecode/BasicInputMethod/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000662) | [macOS](https://developer.apple.com/library/archive/samplecode/BasicInputMethod/BasicInputMethod.zip) | 2003-01-14 | | [BasicPlugIn](https://developer.apple.com/library/archive/samplecode/BasicPlugIn/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000720) | [macOS](https://developer.apple.com/library/archive/samplecode/BasicPlugIn/BasicPlugIn.zip) | 2003-07-28 | | [BetterAuthorizationSample](https://developer.apple.com/library/archive/samplecode/BetterAuthorizationSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004207) | [macOS](https://developer.apple.com/library/archive/samplecode/BetterAuthorizationSample/BetterAuthorizationSample.zip) | 2007-11-27 | | [BezierPathLab](https://developer.apple.com/library/archive/samplecode/BezierPathLab/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008880) | [macOS](https://developer.apple.com/library/archive/samplecode/BezierPathLab/BezierPathLab.zip) | 2012-06-05 | | [BindingsJoystick](https://developer.apple.com/library/archive/samplecode/BindingsJoystick/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003684) | [macOS](https://developer.apple.com/library/archive/samplecode/BindingsJoystick/BindingsJoystick.zip) | 2012-04-09 | | [Birthdays](https://developer.apple.com/library/archive/samplecode/Birthdays/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003982) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/Birthdays/Birthdays.zip) | 2010-07-20 | | [Bitblitz](https://developer.apple.com/library/archive/samplecode/Bitblitz/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000066) | [macOS](https://developer.apple.com/library/archive/samplecode/Bitblitz/Bitblitz.zip) | 2003-10-10 | | [BlastApp](https://developer.apple.com/library/archive/samplecode/BlastApp/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012297) | [macOS](https://developer.apple.com/library/archive/samplecode/BlastApp/BlastApp.zip) | 2012-06-07 | | [BlitNoVBL](https://developer.apple.com/library/archive/samplecode/BlitNoVBL/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000487) | [macOS](https://developer.apple.com/library/archive/samplecode/BlitNoVBL/BlitNoVBL.zip) | 2003-01-14 | | [BlitVBL](https://developer.apple.com/library/archive/samplecode/BlitVBL/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000488) | [macOS](https://developer.apple.com/library/archive/samplecode/BlitVBL/BlitVBL.zip) | 2003-01-14 | | [BlockAnimation](https://developer.apple.com/library/archive/samplecode/BlockAnimation/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004000) | [macOS](https://developer.apple.com/library/archive/samplecode/BlockAnimation/BlockAnimation.zip) | 2006-08-01 | | [BlockedEventQueue](https://developer.apple.com/library/archive/samplecode/BlockedEventQueue/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003599) | [macOS](https://developer.apple.com/library/archive/samplecode/BlockedEventQueue/BlockedEventQueue.zip) | 2006-04-13 | | [Blocker Safari Extension](https://developer.apple.com/library/archive/samplecode/BlockerSafariExtension/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010127) | [Safari](https://developer.apple.com/library/archive/samplecode/BlockerSafariExtension/BlockerSafariExtension.zip) | 2010-06-08 | | [Blurring and Tinting an Image](https://developer.apple.com/library/archive/samplecode/UIImageEffects/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013396) | [watchOS\|iOS](https://developer.apple.com/library/archive/samplecode/UIImageEffects/UIImageEffects.zip) | 2014-07-31 | | [BoingX](https://developer.apple.com/library/archive/samplecode/BoingX/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000511) | [macOS](https://developer.apple.com/library/archive/samplecode/BoingX/BoingX.zip) | 2007-11-06 | | [BonjourWeb](https://developer.apple.com/library/archive/samplecode/BonjourWeb/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007415) | [iOS](https://developer.apple.com/library/archive/samplecode/BonjourWeb/BonjourWeb.zip) | 2010-06-16 | | [BootstrapDump](https://developer.apple.com/library/archive/samplecode/BootstrapDump/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000747) | [macOS](https://developer.apple.com/library/archive/samplecode/BootstrapDump/BootstrapDump.zip) | 2008-06-18 | | [BouncingSprites](https://developer.apple.com/library/archive/samplecode/BouncingSprites/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000929) | [macOS](https://developer.apple.com/library/archive/samplecode/BouncingSprites/BouncingSprites.zip) | 2003-01-14 | | [Box](https://developer.apple.com/library/archive/samplecode/Box/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000098) | [macOS](https://developer.apple.com/library/archive/samplecode/Box/Box.zip) | 2003-01-14 | | [BoxMooV](https://developer.apple.com/library/archive/samplecode/BoxMooV/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000099) | [macOS](https://developer.apple.com/library/archive/samplecode/BoxMooV/BoxMooV.zip) | 2003-01-14 | | [BoxTex](https://developer.apple.com/library/archive/samplecode/BoxTex/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000101) | [macOS](https://developer.apple.com/library/archive/samplecode/BoxTex/BoxTex.zip) | 2003-01-14 | | [Boxes: GameplayKit Entity-Component Basics](https://developer.apple.com/library/archive/samplecode/Boxes_GamePlayKit/Introduction/Intro.html#//apple_ref/doc/uid/TP40016459) | [tvOS\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/BoxesGameplayKitEntity-ComponentBasics/BoxesGameplayKitEntity-ComponentBasics.zip) | 2016-09-13 | | [BracketStripes: Using the Bracketed Capture API](https://developer.apple.com/library/archive/samplecode/BracketStripes/Introduction/Intro.html#//apple_ref/doc/uid/TP40014579) | [iOS](https://developer.apple.com/library/archive/samplecode/BracketStripesUsingtheBracketedCaptureAPI/BracketStripesUsingtheBracketedCaptureAPI.zip) | 2016-09-28 | | [Breadcrumb: Using CoreLocation to track user movement](https://developer.apple.com/library/archive/samplecode/Breadcrumb/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010048) | [iOS](https://developer.apple.com/library/archive/samplecode/BreadcrumbUsingCoreLocationtotrackusermovement/BreadcrumbUsingCoreLocationtotrackusermovement.zip) | 2018-05-17 | | [BrideOfMungGrab](https://developer.apple.com/library/archive/samplecode/BrideOfMungGrab/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003504) | [macOS](https://developer.apple.com/library/archive/samplecode/BrideOfMungGrab/BrideOfMungGrab.zip) | 2005-08-12 | | [BrightContrastEngine](https://developer.apple.com/library/archive/samplecode/BrightContrastEngine/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000067) | [macOS](https://developer.apple.com/library/archive/samplecode/BrightContrastEngine/BrightContrastEngine.zip) | 2003-10-10 | | [BufCallback](https://developer.apple.com/library/archive/samplecode/BufCallback/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000360) | [macOS](https://developer.apple.com/library/archive/samplecode/BufCallback/BufCallback.zip) | 2003-03-14 | | [BufferedWindows](https://developer.apple.com/library/archive/samplecode/BufferedWindows/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000489) | [macOS](https://developer.apple.com/library/archive/samplecode/BufferedWindows/BufferedWindows.zip) | 2003-01-14 | | [BundleLoader](https://developer.apple.com/library/archive/samplecode/BundleLoader/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004405) | [macOS](https://developer.apple.com/library/archive/samplecode/BundleLoader/BundleLoader.zip) | 2012-10-18 | | [BurntTextSampleCode](https://developer.apple.com/library/archive/samplecode/BurntTextSampleCode/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001014) | [macOS](https://developer.apple.com/library/archive/samplecode/BurntTextSampleCode/BurntTextSampleCode.zip) | 2003-01-14 | | [BusErrorTest](https://developer.apple.com/library/archive/samplecode/BusErrorTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000008) | [macOS](https://developer.apple.com/library/archive/samplecode/BusErrorTest/BusErrorTest.zip) | 2003-01-14 | | [ButtonMadness: Creating and Customizing AppKit Controls](https://developer.apple.com/library/archive/samplecode/ButtonMadness/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004430) | [macOS](https://developer.apple.com/library/archive/samplecode/ButtonMadnessCreatingandCustomizingAppKitControls/ButtonMadnessCreatingandCustomizingAppKitControls.zip) | 2017-12-21 | | [CALayerEssentials](https://developer.apple.com/library/archive/samplecode/CALayerEssentials/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008029) | [macOS](https://developer.apple.com/library/archive/samplecode/CALayerEssentials/CALayerEssentials.zip) | 2011-12-06 | | [CAPlayThrough](https://developer.apple.com/library/archive/samplecode/CAPlayThrough/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004443) | [macOS](https://developer.apple.com/library/archive/samplecode/CAPlayThrough/CAPlayThrough.zip) | 2013-09-23 | | [CASoundLab2](https://developer.apple.com/library/archive/samplecode/CASoundLab2/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000362) | [macOS](https://developer.apple.com/library/archive/samplecode/CASoundLab2/CASoundLab2.zip) | 2003-01-14 | | [CD Tracker](https://developer.apple.com/library/archive/samplecode/CD_Tracker/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000421) | [macOS](https://developer.apple.com/library/archive/samplecode/CD_Tracker/CD_Tracker.zip) | 2003-01-14 | | [CD-ROM Detection](https://developer.apple.com/library/archive/samplecode/CD-ROM_Detection/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000422) | [macOS](https://developer.apple.com/library/archive/samplecode/CD-ROM_Detection/CD-ROM_Detection.zip) | 2003-01-14 | | [CDROMDriveCheck](https://developer.apple.com/library/archive/samplecode/CDROMDriveCheck/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000010) | [macOS](https://developer.apple.com/library/archive/samplecode/CDROMDriveCheck/CDROMDriveCheck.zip) | 2003-01-14 | | [CDROMSample](https://developer.apple.com/library/archive/samplecode/CDROMSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000423) | [macOS](https://developer.apple.com/library/archive/samplecode/CDROMSample/CDROMSample.zip) | 2011-05-05 | | [CDTool](https://developer.apple.com/library/archive/samplecode/CDTool/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000011) | [macOS](https://developer.apple.com/library/archive/samplecode/CDTool/CDTool.zip) | 2003-01-14 | | [CFFTPSample](https://developer.apple.com/library/archive/samplecode/CFFTPSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003223) | [macOS](https://developer.apple.com/library/archive/samplecode/CFFTPSample/CFFTPSample.zip) | 2006-10-13 | | [CFHostSample](https://developer.apple.com/library/archive/samplecode/CFHostSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003222) | [macOS](https://developer.apple.com/library/archive/samplecode/CFHostSample/CFHostSample.zip) | 2017-03-14 | | [CFLocalServer](https://developer.apple.com/library/archive/samplecode/CFLocalServer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003652) | [macOS](https://developer.apple.com/library/archive/samplecode/CFLocalServer/CFLocalServer.zip) | 2005-07-26 | | [CFM_MachO_CFM](https://developer.apple.com/library/archive/samplecode/CFM_MachO_CFM/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001083) | [macOS](https://developer.apple.com/library/archive/samplecode/CFM_MachO_CFM/CFM_MachO_CFM.zip) | 2003-07-17 | | [CFNetworkHTTPDownload](https://developer.apple.com/library/archive/samplecode/CFNetworkHTTPDownload/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000694) | [macOS](https://developer.apple.com/library/archive/samplecode/CFNetworkHTTPDownload/CFNetworkHTTPDownload.zip) | 2006-01-18 | | [CFPrefTopScores](https://developer.apple.com/library/archive/samplecode/CFPrefTopScores/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003414) | [macOS](https://developer.apple.com/library/archive/samplecode/CFPrefTopScores/CFPrefTopScores.zip) | 2006-10-09 | | [CFPreferences](https://developer.apple.com/library/archive/samplecode/CFPreferences/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000722) | [macOS](https://developer.apple.com/library/archive/samplecode/CFPreferences/CFPreferences.zip) | 2010-05-12 | | [CFPrefsDumper](https://developer.apple.com/library/archive/samplecode/CFPrefsDumper/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000723) | [macOS](https://developer.apple.com/library/archive/samplecode/CFPrefsDumper/CFPrefsDumper.zip) | 2003-01-14 | | [CFProxySupportTool](https://developer.apple.com/library/archive/samplecode/CFProxySupportTool/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004495) | [macOS](https://developer.apple.com/library/archive/samplecode/CFProxySupportTool/CFProxySupportTool.zip) | 2007-10-29 | | [CGDrawPicture](https://developer.apple.com/library/archive/samplecode/CGDrawPicture/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000490) | [macOS](https://developer.apple.com/library/archive/samplecode/CGDrawPicture/CGDrawPicture.zip) | 2003-01-14 | | [CGGamma](https://developer.apple.com/library/archive/samplecode/CGGamma/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000491) | [macOS](https://developer.apple.com/library/archive/samplecode/CGGamma/CGGamma.zip) | 2003-01-14 | | [CGText](https://developer.apple.com/library/archive/samplecode/CGText/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000070) | [macOS](https://developer.apple.com/library/archive/samplecode/CGText/CGText.zip) | 2003-09-30 | | [CIAnnotation](https://developer.apple.com/library/archive/samplecode/CIAnnotation/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003682) | [macOS](https://developer.apple.com/library/archive/samplecode/CIAnnotation/CIAnnotation.zip) | 2012-10-30 | | [CIBevelSample](https://developer.apple.com/library/archive/samplecode/CIBevelSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009472) | [macOS](https://developer.apple.com/library/archive/samplecode/CIBevelSample/CIBevelSample.zip) | 2012-10-30 | | [CIChromaKeyFilter](https://developer.apple.com/library/archive/samplecode/CIChromaKeyFilter/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009202) | [macOS](https://developer.apple.com/library/archive/samplecode/CIChromaKeyFilter/CIChromaKeyFilter.zip) | 2009-08-27 | | [CIColorTracking](https://developer.apple.com/library/archive/samplecode/CIColorTracking/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004327) | [macOS](https://developer.apple.com/library/archive/samplecode/CIColorTracking/CIColorTracking.zip) | 2008-04-24 | | [CIDemoImageUnit](https://developer.apple.com/library/archive/samplecode/CIDemoImageUnit/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009473) | [macOS](https://developer.apple.com/library/archive/samplecode/CIDemoImageUnit/CIDemoImageUnit.zip) | 2010-01-21 | | [CIExposureSample](https://developer.apple.com/library/archive/samplecode/CIExposureSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009474) | [macOS](https://developer.apple.com/library/archive/samplecode/CIExposureSample/CIExposureSample.zip) | 2012-10-30 | | [CIFilterGeneratorTest](https://developer.apple.com/library/archive/samplecode/CIFilterGeneratorTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009471) | [macOS](https://developer.apple.com/library/archive/samplecode/CIFilterGeneratorTest/CIFilterGeneratorTest.zip) | 2012-11-06 | | [CIHazeFilterSample](https://developer.apple.com/library/archive/samplecode/CIHazeFilterSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009219) | [macOS](https://developer.apple.com/library/archive/samplecode/CIHazeFilterSample/CIHazeFilterSample.zip) | 2012-10-31 | | [CIMicroPaint](https://developer.apple.com/library/archive/samplecode/CIMicroPaint/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009218) | [macOS](https://developer.apple.com/library/archive/samplecode/CIMicroPaint/CIMicroPaint.zip) | 2012-11-01 | | [CIRAWFilterSample](https://developer.apple.com/library/archive/samplecode/CIRAWFilterSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009217) | [macOS](https://developer.apple.com/library/archive/samplecode/CIRAWFilterSample/CIRAWFilterSample.zip) | 2009-09-08 | | [CITransitionSelectorSample](https://developer.apple.com/library/archive/samplecode/CITransitionSelectorSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009470) | [macOS](https://developer.apple.com/library/archive/samplecode/CITransitionSelectorSample/CITransitionSelectorSample.zip) | 2012-10-31 | | [CITransitionSelectorSample2](https://developer.apple.com/library/archive/samplecode/CITransitionSelectorSample2/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003680) | [macOS](https://developer.apple.com/library/archive/samplecode/CITransitionSelectorSample2/CITransitionSelectorSample2.zip) | 2011-08-23 | | [CIVideoDemoGL](https://developer.apple.com/library/archive/samplecode/CIVideoDemoGL/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003623) | [macOS](https://developer.apple.com/library/archive/samplecode/CIVideoDemoGL/CIVideoDemoGL.zip) | 2007-10-03 | | [CPUGestalt](https://developer.apple.com/library/archive/samplecode/CPUGestalt/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000725) | [macOS](https://developer.apple.com/library/archive/samplecode/CPUGestalt/CPUGestalt.zip) | 2003-10-27 | | [CPlusTESample](https://developer.apple.com/library/archive/samplecode/CPlusTESample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000730) | [macOS](https://developer.apple.com/library/archive/samplecode/CPlusTESample/CPlusTESample.zip) | 2003-01-14 | | [CSS Effects: Lightbox](https://developer.apple.com/library/archive/samplecode/lightbox/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010105) | [Safari\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/lightbox/lightbox.zip) | 2010-11-01 | | [CSS Effects: Photo Gallery](https://developer.apple.com/library/archive/samplecode/CSSEffectsPhotoGallery/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010106) | [Safari\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/CSSEffectsPhotoGallery/CSSEffectsPhotoGallery.zip) | 2010-08-19 | | [CSS Showcase: UI Elements and Navigation](https://developer.apple.com/library/archive/samplecode/cssEffectsPart1/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010108) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/cssEffectsPart1/cssEffectsPart1.zip) | 2010-06-22 | | [CTMClip](https://developer.apple.com/library/archive/samplecode/CTMClip/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000496) | [macOS](https://developer.apple.com/library/archive/samplecode/CTMClip/CTMClip.zip) | 2003-01-14 | | [CTMDemo](https://developer.apple.com/library/archive/samplecode/CTMDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000497) | [macOS](https://developer.apple.com/library/archive/samplecode/CTMDemo/CTMDemo.zip) | 2003-01-14 | | [CWCocoaComponent](https://developer.apple.com/library/archive/samplecode/CWCocoaComponent/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003596) | [macOS](https://developer.apple.com/library/archive/samplecode/CWCocoaComponent/CWCocoaComponent.zip) | 2006-04-12 | | [Cache](https://developer.apple.com/library/archive/samplecode/Cache/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012288) | [macOS](https://developer.apple.com/library/archive/samplecode/Cache/Cache.zip) | 2012-05-30 | | [Cache Flushing](https://developer.apple.com/library/archive/samplecode/Cache_Flushing/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000222) | [macOS](https://developer.apple.com/library/archive/samplecode/Cache_Flushing/Cache_Flushing.zip) | 2003-01-14 | | [Calc ControlRgn](https://developer.apple.com/library/archive/samplecode/Calc_ControlRgn/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000559) | [macOS](https://developer.apple.com/library/archive/samplecode/Calc_ControlRgn/Calc_ControlRgn.zip) | 2003-01-30 | | [CalcCMaskCalcMask](https://developer.apple.com/library/archive/samplecode/CalcCMaskCalcMask/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000068) | [macOS](https://developer.apple.com/library/archive/samplecode/CalcCMaskCalcMask/CalcCMaskCalcMask.zip) | 2003-10-10 | | [Calculator](https://developer.apple.com/library/archive/samplecode/Calculator/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000560) | [macOS](https://developer.apple.com/library/archive/samplecode/Calculator/Calculator.zip) | 2003-01-30 | | [CalendarView](https://developer.apple.com/library/archive/samplecode/CalendarView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000628) | [macOS](https://developer.apple.com/library/archive/samplecode/CalendarView/CalendarView.zip) | 2003-01-30 | | [CallJS](https://developer.apple.com/library/archive/samplecode/CallJS/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004241) | [macOS](https://developer.apple.com/library/archive/samplecode/CallJS/CallJS.zip) | 2011-07-05 | | [CallMachOFramework](https://developer.apple.com/library/archive/samplecode/CallMachOFramework/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001082) | [macOS](https://developer.apple.com/library/archive/samplecode/CallMachOFramework/CallMachOFramework.zip) | 2003-07-17 | | [CameraBrowser](https://developer.apple.com/library/archive/samplecode/CameraBrowser/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007761) | [macOS](https://developer.apple.com/library/archive/samplecode/CameraBrowser/CameraBrowser.zip) | 2012-08-31 | | [Canonicalized String Searching Using a Core Data Derived Property](https://developer.apple.com/library/archive/samplecode/DerivedProperty/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007750) | [macOS](https://developer.apple.com/library/archive/samplecode/DerivedProperty/DerivedProperty.zip) | 2013-05-20 | | [CapabilitiesSample](https://developer.apple.com/library/archive/samplecode/CapabilitiesSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000652) | [macOS](https://developer.apple.com/library/archive/samplecode/CapabilitiesSample/CapabilitiesSample.zip) | 2003-01-14 | | [CaptureAndCompressIPBMovie](https://developer.apple.com/library/archive/samplecode/CaptureAndCompressIPBMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003598) | [macOS](https://developer.apple.com/library/archive/samplecode/CaptureAndCompressIPBMovie/CaptureAndCompressIPBMovie.zip) | 2007-08-14 | | [Carbon GLSnapshot](https://developer.apple.com/library/archive/samplecode/Carbon_GLSnapshot/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000514) | [macOS](https://developer.apple.com/library/archive/samplecode/Carbon_GLSnapshot/Carbon_GLSnapshot.zip) | 2003-07-07 | | [Carbon Porting Tutorial](https://developer.apple.com/library/archive/samplecode/CarbonPorting/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003904) | [macOS](https://developer.apple.com/library/archive/samplecode/CarbonPorting/CarbonPorting.zip) | 2006-07-25 | | [CarbonCocoaCoreImageTab](https://developer.apple.com/library/archive/samplecode/CarbonCocoaCoreImageTab/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003977) | [macOS](https://developer.apple.com/library/archive/samplecode/CarbonCocoaCoreImageTab/CarbonCocoaCoreImageTab.zip) | 2006-07-25 | | [CarbonCocoaTempConverter](https://developer.apple.com/library/archive/samplecode/CarbonCocoaTempConverter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000380) | [macOS](https://developer.apple.com/library/archive/samplecode/CarbonCocoaTempConverter/CarbonCocoaTempConverter.zip) | 2008-03-10 | | [CarbonCocoa_PictureCursor](https://developer.apple.com/library/archive/samplecode/CarbonCocoa_PictureCursor/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003983) | [macOS](https://developer.apple.com/library/archive/samplecode/CarbonCocoa_PictureCursor/CarbonCocoa_PictureCursor.zip) | 2007-01-12 | | [CarbonCustomList](https://developer.apple.com/library/archive/samplecode/CarbonCustomList/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000561) | [macOS](https://developer.apple.com/library/archive/samplecode/CarbonCustomList/CarbonCustomList.zip) | 2003-01-30 | | [CarbonInCocoa](https://developer.apple.com/library/archive/samplecode/CarbonInCocoa/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000381) | [macOS](https://developer.apple.com/library/archive/samplecode/CarbonInCocoa/CarbonInCocoa.zip) | 2003-03-26 | | [CarbonMDEF](https://developer.apple.com/library/archive/samplecode/CarbonMDEF/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000562) | [macOS](https://developer.apple.com/library/archive/samplecode/CarbonMDEF/CarbonMDEF.zip) | 2003-01-30 | | [CarbonQTGraphicImport](https://developer.apple.com/library/archive/samplecode/CarbonQTGraphicImport/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000884) | [macOS](https://developer.apple.com/library/archive/samplecode/CarbonQTGraphicImport/CarbonQTGraphicImport.zip) | 2003-01-14 | | [CarbonQuartzComposer_TV](https://developer.apple.com/library/archive/samplecode/CarbonQuartzComposer_TV/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004012) | [macOS](https://developer.apple.com/library/archive/samplecode/CarbonQuartzComposer_TV/CarbonQuartzComposer_TV.zip) | 2006-10-02 | | [CarbonQuartzDrawingWPrinting](https://developer.apple.com/library/archive/samplecode/CarbonQuartzDrawingWPrinting/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000744) | [macOS](https://developer.apple.com/library/archive/samplecode/CarbonQuartzDrawingWPrinting/CarbonQuartzDrawingWPrinting.zip) | 2003-01-14 | | [CarbonSketch](https://developer.apple.com/library/archive/samplecode/CarbonSketch/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003226) | [macOS](https://developer.apple.com/library/archive/samplecode/CarbonSketch/CarbonSketch.zip) | 2005-03-23 | | [CarbonSndPlayDB](https://developer.apple.com/library/archive/samplecode/CarbonSndPlayDB/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000361) | [macOS](https://developer.apple.com/library/archive/samplecode/CarbonSndPlayDB/CarbonSndPlayDB.zip) | 2003-03-14 | | [CarbonTransparentWindow](https://developer.apple.com/library/archive/samplecode/CarbonTransparentWindow/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003751) | [macOS](https://developer.apple.com/library/archive/samplecode/CarbonTransparentWindow/CarbonTransparentWindow.zip) | 2005-08-10 | | [CardFlip](https://developer.apple.com/library/archive/samplecode/CardFlip/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007646) | [Safari\|iOS](https://developer.apple.com/library/archive/samplecode/CardFlip/CardFlip.zip) | 2008-06-19 | | [ChangeTextStyleRec](https://developer.apple.com/library/archive/samplecode/ChangeTextStyleRec/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000377) | [macOS](https://developer.apple.com/library/archive/samplecode/ChangeTextStyleRec/ChangeTextStyleRec.zip) | 2003-01-14 | | [Cheap Studio](https://developer.apple.com/library/archive/samplecode/Cheap_Studio/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000363) | [macOS](https://developer.apple.com/library/archive/samplecode/Cheap_Studio/Cheap_Studio.zip) | 2003-03-14 | | [CheckExecutableArchitecture](https://developer.apple.com/library/archive/samplecode/CheckExecutableArchitecture/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003756) | [macOS](https://developer.apple.com/library/archive/samplecode/CheckExecutableArchitecture/CheckExecutableArchitecture.zip) | 2006-02-07 | | [Checking and Requesting Access to Data Classes in Privacy Settings](https://developer.apple.com/library/archive/samplecode/PrivacyPrompts/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013410) | [iOS](https://developer.apple.com/library/archive/samplecode/CheckingandRequestingAccesstoDataClassesinPrivacySettings/CheckingandRequestingAccesstoDataClassesinPrivacySettings.zip) | 2017-12-21 | | [ChromaKeyMovie](https://developer.apple.com/library/archive/samplecode/ChromaKeyMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000844) | [macOS](https://developer.apple.com/library/archive/samplecode/ChromaKeyMovie/ChromaKeyMovie.zip) | 2003-01-14 | | [CircleLayout](https://developer.apple.com/library/archive/samplecode/CircleLayout/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012315) | [iOS](https://developer.apple.com/library/archive/samplecode/CircleLayout/CircleLayout.zip) | 2015-07-31 | | [CircleView](https://developer.apple.com/library/archive/samplecode/CircleView/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008882) | [macOS](https://developer.apple.com/library/archive/samplecode/CircleView/CircleView.zip) | 2017-08-17 | | [ClickSound](https://developer.apple.com/library/archive/samplecode/ClickSound/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000343) | [macOS](https://developer.apple.com/library/archive/samplecode/ClickSound/ClickSound.zip) | 2003-01-14 | | [ClipboardViewer](https://developer.apple.com/library/archive/samplecode/ClipboardViewer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008825) | [macOS](https://developer.apple.com/library/archive/samplecode/ClipboardViewer/ClipboardViewer.zip) | 2012-06-07 | | [Clock Control](https://developer.apple.com/library/archive/samplecode/Clock_Control/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000382) | [macOS](https://developer.apple.com/library/archive/samplecode/Clock_Control/Clock_Control.zip) | 2003-02-25 | | [ClockControl](https://developer.apple.com/library/archive/samplecode/ClockControl/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008828) | [macOS](https://developer.apple.com/library/archive/samplecode/ClockControl/ClockControl.zip) | 2009-05-26 | | [ClockControlPalette](https://developer.apple.com/library/archive/samplecode/ClockControlPalette/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008849) | [Xcode Developer Tools\|macOS](https://developer.apple.com/library/archive/samplecode/ClockControlPalette/ClockControlPalette.zip) | 2009-05-27 | | [ClockView](https://developer.apple.com/library/archive/samplecode/ClockView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000629) | [macOS](https://developer.apple.com/library/archive/samplecode/ClockView/ClockView.zip) | 2003-01-30 | | [Close Tab Safari Extension](https://developer.apple.com/library/archive/samplecode/CloseTabSafariExtension/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010126) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/CloseTabSafariExtension/CloseTabSafariExtension.zip) | 2010-06-08 | | [ClosedCaptionImporter](https://developer.apple.com/library/archive/samplecode/ClosedCaptionImporter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004354) | [macOS](https://developer.apple.com/library/archive/samplecode/ClosedCaptionImporter/ClosedCaptionImporter.zip) | 2007-11-15 | | [CloudCaptions: How integrate CloudKit into your application](https://developer.apple.com/library/archive/samplecode/CloudCaptions/Introduction/Intro.html#//apple_ref/doc/uid/TP40014732) | [iOS](https://developer.apple.com/library/archive/samplecode/CloudCaptionsHowintegrateCloudKitintoyourapplication/CloudCaptionsHowintegrateCloudKitintoyourapplication.zip) | 2014-09-17 | | [CloudKit Catalog: An Introduction to CloudKit (Cocoa and JavaScript) ](https://developer.apple.com/library/archive/samplecode/CloudAtlas/Introduction/Intro.html#//apple_ref/doc/uid/TP40014599) | [CloudKit JS\|iOS](https://developer.apple.com/library/archive/samplecode/CloudKitCatalogAnIntroductiontoCloudKitCocoaandJavaScript/CloudKitCatalogAnIntroductiontoCloudKitCocoaandJavaScript.zip) | 2016-09-13 | | [CloudKit Share: Building CloudKit local cache and using CloudKit share APIs](https://developer.apple.com/library/archive/samplecode/CloudKitShare/Introduction/Intro.html#//apple_ref/doc/uid/TP40017580) | [iOS](https://developer.apple.com/library/archive/samplecode/CloudKitShareBuildingCloudKitlocalcacheandusingCloudKitshareAPIs/CloudKitShareBuildingCloudKitlocalcacheandusingCloudKitshareAPIs.zip) | 2018-06-04 | | [CloudPhotos : Using CloudKit with iOS and OS X](https://developer.apple.com/library/archive/samplecode/CloudPhotos/Introduction/Intro.html#//apple_ref/doc/uid/TP40016061) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/CloudPhotosUsingCloudKitwithiOSandOSX/CloudPhotosUsingCloudKitwithiOSandOSX.zip) | 2017-03-09 | | [CloudSearch: Query for documents in iCloud using NSMetaDataQuery](https://developer.apple.com/library/archive/samplecode/CloudSearch/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013494) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/CloudSearchQueryfordocumentsiniCloudusingNSMetaDataQuery/CloudSearchQueryfordocumentsiniCloudusingNSMetaDataQuery.zip) | 2016-03-24 | | [ClutWind](https://developer.apple.com/library/archive/samplecode/ClutWind/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000141) | [macOS](https://developer.apple.com/library/archive/samplecode/ClutWind/ClutWind.zip) | 2003-01-14 | | [Cocoa - SGDataProc](https://developer.apple.com/library/archive/samplecode/Cocoa_-_SGDataProc/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000798) | [macOS](https://developer.apple.com/library/archive/samplecode/Cocoa_-_SGDataProc/Cocoa_-_SGDataProc.zip) | 2003-01-14 | | [Cocoa CG aliasing demo](https://developer.apple.com/library/archive/samplecode/Cocoa_CG_aliasing_demo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000492) | [macOS](https://developer.apple.com/library/archive/samplecode/Cocoa_CG_aliasing_demo/Cocoa_CG_aliasing_demo.zip) | 2003-07-17 | | [Cocoa CG arc demo](https://developer.apple.com/library/archive/samplecode/Cocoa_CG_arc_demo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000493) | [macOS](https://developer.apple.com/library/archive/samplecode/Cocoa_CG_arc_demo/Cocoa_CG_arc_demo.zip) | 2010-08-31 | | [Cocoa OpenGL](https://developer.apple.com/library/archive/samplecode/CocoaGL/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004501) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaGL/CocoaGL.zip) | 2007-10-22 | | [Cocoa PDE with Carbon Printing](https://developer.apple.com/library/archive/samplecode/CarbonPrintingSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004209) | [macOS](https://developer.apple.com/library/archive/samplecode/CarbonPrintingSample/CarbonPrintingSample.zip) | 2007-07-27 | | [Cocoa Printing using Core Printing](https://developer.apple.com/library/archive/samplecode/PMPrinterPrintWithFile/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003958) | [macOS](https://developer.apple.com/library/archive/samplecode/PMPrinterPrintWithFile/PMPrinterPrintWithFile.zip) | 2012-08-14 | | [Cocoa Tips and Tricks](https://developer.apple.com/library/archive/samplecode/CocoaTipsAndTricks/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010039) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaTipsAndTricks/CocoaTipsAndTricks.zip) | 2013-08-17 | | [CocoaAUHost](https://developer.apple.com/library/archive/samplecode/CocoaAUHost/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008644) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaAUHost/CocoaAUHost.zip) | 2009-04-15 | | [CocoaCreateMovie](https://developer.apple.com/library/archive/samplecode/CocoaCreateMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000762) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaCreateMovie/CocoaCreateMovie.zip) | 2003-01-14 | | [CocoaDVDPlayer](https://developer.apple.com/library/archive/samplecode/CocoaDVDPlayer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003792) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaDVDPlayer/CocoaDVDPlayer.zip) | 2012-08-17 | | [CocoaDragAndDrop](https://developer.apple.com/library/archive/samplecode/CocoaDragAndDrop/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000384) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaDragAndDrop/CocoaDragAndDrop.zip) | 2011-07-26 | | [CocoaEcho](https://developer.apple.com/library/archive/samplecode/CocoaEcho/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003603) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaEcho/CocoaEcho.zip) | 2012-08-17 | | [CocoaHTTPServer](https://developer.apple.com/library/archive/samplecode/CocoaHTTPServer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003604) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaHTTPServer/CocoaHTTPServer.zip) | 2005-06-01 | | [CocoaInCarbon](https://developer.apple.com/library/archive/samplecode/CocoaInCarbon/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000385) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaInCarbon/CocoaInCarbon.zip) | 2005-10-04 | | [CocoaPeoplePicker](https://developer.apple.com/library/archive/samplecode/CocoaPeoplePicker/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003159) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaPeoplePicker/CocoaPeoplePicker.zip) | 2013-07-30 | | [CocoaSOAP](https://developer.apple.com/library/archive/samplecode/CocoaSOAP/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003715) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaSOAP/CocoaSOAP.zip) | 2005-06-06 | | [CocoaSlideCollection: Using NSCollectionView on OS X 10.11](https://developer.apple.com/library/archive/samplecode/CocoaSlideCollection/Introduction/Intro.html#//apple_ref/doc/uid/TP40016149) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaSlideCollectionUsingNSCollectionViewonOSX10/CocoaSlideCollectionUsingNSCollectionViewonOSX10.11.zip) | 2015-09-16 | | [CocoaSlides](https://developer.apple.com/library/archive/samplecode/CocoaSlides/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004072) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaSlides/CocoaSlides.zip) | 2013-03-27 | | [CocoaSpeechSynthesisExample](https://developer.apple.com/library/archive/samplecode/CocoaSpeechSynthesisExample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001089) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaSpeechSynthesisExample/CocoaSpeechSynthesisExample.zip) | 2015-07-10 | | [CocoaVideoFrameToGWorld](https://developer.apple.com/library/archive/samplecode/CocoaVideoFrameToGWorld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000763) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaVideoFrameToGWorld/CocoaVideoFrameToGWorld.zip) | 2003-01-14 | | [CocoaVideoFrameToNSImage](https://developer.apple.com/library/archive/samplecode/CocoaVideoFrameToNSImage/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000764) | [macOS](https://developer.apple.com/library/archive/samplecode/CocoaVideoFrameToNSImage/CocoaVideoFrameToNSImage.zip) | 2003-01-14 | | [Cocoa_With_Carbon_or_CPP](https://developer.apple.com/library/archive/samplecode/Cocoa_With_Carbon_or_CPP/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000383) | [macOS](https://developer.apple.com/library/archive/samplecode/Cocoa_With_Carbon_or_CPP/Cocoa_With_Carbon_or_CPP.zip) | 2011-08-05 | | [CollectPictColors](https://developer.apple.com/library/archive/samplecode/CollectPictColors/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000071) | [macOS](https://developer.apple.com/library/archive/samplecode/CollectPictColors/CollectPictColors.zip) | 2003-10-10 | | [Collection View Transition](https://developer.apple.com/library/archive/samplecode/CollectionViewTransition/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013415) | [iOS](https://developer.apple.com/library/archive/samplecode/CollectionViewTransition/CollectionViewTransition.zip) | 2013-10-29 | | [CollectionView-Simple](https://developer.apple.com/library/archive/samplecode/CollectionView-Simple/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012860) | [iOS](https://developer.apple.com/library/archive/samplecode/CollectionView-Simple/CollectionView-Simple.zip) | 2015-10-22 | | [Color Finder Safari Extension](https://developer.apple.com/library/archive/samplecode/ColorFinderSafariExtension/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011115) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/ColorFinderSafariExtension/ColorFinderSafariExtension.zip) | 2011-06-07 | | [Color Gamut Showcase: Using wide color gamut in Cocoa and Cocoa Touch applications with SceneKit](https://developer.apple.com/library/archive/samplecode/ColorGamutShowcase/Introduction/Intro.html#//apple_ref/doc/uid/TP40017308) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/ColorGamutShowcaseUsingwidecolorgamutinCocoaandCocoaTouchapplicationswithSceneKit/ColorGamutShowcaseUsingwidecolorgamutinCocoaandCocoaTouchapplicationswithSceneKit.zip) | 2016-09-28 | | [Color Marquee](https://developer.apple.com/library/archive/samplecode/Color_Marquee/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000072) | [macOS](https://developer.apple.com/library/archive/samplecode/Color_Marquee/Color_Marquee.zip) | 2003-10-10 | | [Color Picker](https://developer.apple.com/library/archive/samplecode/Color_Picker/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000073) | [macOS](https://developer.apple.com/library/archive/samplecode/Color_Picker/Color_Picker.zip) | 2003-01-14 | | [Color Sampler](https://developer.apple.com/library/archive/samplecode/Color_Sampler/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000386) | [macOS](https://developer.apple.com/library/archive/samplecode/Color_Sampler/Color_Sampler.zip) | 2003-01-14 | | [ColorBars](https://developer.apple.com/library/archive/samplecode/ColorBars/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000495) | [macOS](https://developer.apple.com/library/archive/samplecode/ColorBars/ColorBars.zip) | 2003-01-14 | | [ColorCDEF](https://developer.apple.com/library/archive/samplecode/ColorCDEF/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000180) | [macOS](https://developer.apple.com/library/archive/samplecode/ColorCDEF/ColorCDEF.zip) | 2003-08-28 | | [ColorMatching](https://developer.apple.com/library/archive/samplecode/ColorMatching/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003160) | [macOS](https://developer.apple.com/library/archive/samplecode/ColorMatching/ColorMatching.zip) | 2003-12-18 | | [ColorPopUpMenus](https://developer.apple.com/library/archive/samplecode/ColorPopUpMenus/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000564) | [macOS](https://developer.apple.com/library/archive/samplecode/ColorPopUpMenus/ColorPopUpMenus.zip) | 2003-01-30 | | [ColorSwatchView](https://developer.apple.com/library/archive/samplecode/ColorSwatchView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000630) | [macOS](https://developer.apple.com/library/archive/samplecode/ColorSwatchView/ColorSwatchView.zip) | 2003-01-30 | | [ColorSyncDevices](https://developer.apple.com/library/archive/samplecode/ColorSyncDevices/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000724) | [macOS](https://developer.apple.com/library/archive/samplecode/ColorSyncDevices/ColorSyncDevices.zip) | 2003-01-14 | | [ColorSyncDevices-Cocoa](https://developer.apple.com/library/archive/samplecode/ColorSyncDevices-Cocoa/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000387) | [macOS](https://developer.apple.com/library/archive/samplecode/ColorSyncDevices-Cocoa/ColorSyncDevices-Cocoa.zip) | 2003-01-14 | | [ColorTextureSample](https://developer.apple.com/library/archive/samplecode/ColorTextureSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000131) | [macOS](https://developer.apple.com/library/archive/samplecode/ColorTextureSample/ColorTextureSample.zip) | 2003-01-14 | | [ColoredCheckBox](https://developer.apple.com/library/archive/samplecode/ColoredCheckBox/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000563) | [macOS](https://developer.apple.com/library/archive/samplecode/ColoredCheckBox/ColoredCheckBox.zip) | 2003-01-30 | | [ColorizePict](https://developer.apple.com/library/archive/samplecode/ColorizePict/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000074) | [macOS](https://developer.apple.com/library/archive/samplecode/ColorizePict/ColorizePict.zip) | 2003-10-10 | | [ComboBoxPrefs](https://developer.apple.com/library/archive/samplecode/ComboBoxPrefs/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003509) | [macOS](https://developer.apple.com/library/archive/samplecode/ComboBoxPrefs/ComboBoxPrefs.zip) | 2005-10-04 | | [CommonSample](https://developer.apple.com/library/archive/samplecode/CommonSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000108) | [macOS](https://developer.apple.com/library/archive/samplecode/CommonSample/CommonSample.zip) | 2003-01-14 | | [ComplexBrowser: Using NSBrowser class](https://developer.apple.com/library/archive/samplecode/ComplexBrowser/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008829) | [macOS](https://developer.apple.com/library/archive/samplecode/ComplexBrowserUsingNSBrowserclass/ComplexBrowserUsingNSBrowserclass.zip) | 2016-04-07 | | [CompositeLab](https://developer.apple.com/library/archive/samplecode/CompositeLab/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008846) | [macOS](https://developer.apple.com/library/archive/samplecode/CompositeLab/CompositeLab.zip) | 2011-04-25 | | [CompositedEffects](https://developer.apple.com/library/archive/samplecode/CompositedEffects/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000931) | [macOS](https://developer.apple.com/library/archive/samplecode/CompositedEffects/CompositedEffects.zip) | 2003-01-14 | | [CompositedEffects.win](https://developer.apple.com/library/archive/samplecode/CompositedEffects.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000932) | [macOS](https://developer.apple.com/library/archive/samplecode/CompositedEffects/CompositedEffects.win.zip) | 2003-01-14 | | [Compress Picture FKEY](https://developer.apple.com/library/archive/samplecode/Compress_Picture_FKEY/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000319) | [macOS](https://developer.apple.com/library/archive/samplecode/Compress_Picture_FKEY/Compress_Picture_FKEY.zip) | 2003-01-14 | | [CompressMovies](https://developer.apple.com/library/archive/samplecode/CompressMovies/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000885) | [macOS](https://developer.apple.com/library/archive/samplecode/CompressMovies/CompressMovies.zip) | 2003-01-14 | | [Compressed PICT Info](https://developer.apple.com/library/archive/samplecode/Compressed_PICT_Info/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000075) | [macOS](https://developer.apple.com/library/archive/samplecode/Compressed_PICT_Info/Compressed_PICT_Info.zip) | 2003-07-22 | | [CompressedPixmapSample](https://developer.apple.com/library/archive/samplecode/CompressedPixmapSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000132) | [macOS](https://developer.apple.com/library/archive/samplecode/CompressedPixmapSample/CompressedPixmapSample.zip) | 2003-01-14 | | [CompressionSample: Compressing Blocks and Streams of Data](https://developer.apple.com/library/archive/samplecode/CompressionSample/Introduction/Intro.html#//apple_ref/doc/uid/TP40016182) | [macOS](https://developer.apple.com/library/archive/samplecode/CompressionSampleCompressingBlocksandStreamsofData/CompressionSampleCompressingBlocksandStreamsofData.zip) | 2015-09-16 | | [ConcertDemo](https://developer.apple.com/library/archive/samplecode/HTML5VideoPlayer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008930) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/HTML5VideoPlayer/HTML5VideoPlayer.zip) | 2010-02-10 | | [Concordia](https://developer.apple.com/library/archive/samplecode/Concordia/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000181) | [macOS](https://developer.apple.com/library/archive/samplecode/Concordia/Concordia.zip) | 2003-08-28 | | [ConditionalRendering](https://developer.apple.com/library/archive/samplecode/ConditionalRendering/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010087) | [macOS](https://developer.apple.com/library/archive/samplecode/ConditionalRendering/ConditionalRendering.zip) | 2014-06-17 | | [Configure Preferences Reminder Safari Extension](https://developer.apple.com/library/archive/samplecode/ConfigurePrefsReminderSafariExtension/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011113) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/ConfigurePrefsReminderSafariExtension/ConfigurePrefsReminderSafariExtension.zip) | 2011-06-07 | | [Contacts Safari Extension](https://developer.apple.com/library/archive/samplecode/ContactsSafariExtension/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010123) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/ContactsSafariExtension/ContactsSafariExtension.zip) | 2010-06-08 | | [ContentBurn](https://developer.apple.com/library/archive/samplecode/ContentBurn/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000464) | [macOS](https://developer.apple.com/library/archive/samplecode/ContentBurn/ContentBurn.zip) | 2012-04-11 | | [ControlBackground](https://developer.apple.com/library/archive/samplecode/ControlBackground/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000565) | [macOS](https://developer.apple.com/library/archive/samplecode/ControlBackground/ControlBackground.zip) | 2003-01-30 | | [ControlStripSample](https://developer.apple.com/library/archive/samplecode/ControlStripSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000182) | [macOS](https://developer.apple.com/library/archive/samplecode/ControlStripSample/ControlStripSample.zip) | 2003-08-28 | | [ConvertMovieSndTrack](https://developer.apple.com/library/archive/samplecode/ConvertMovieSndTrack/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000908) | [macOS](https://developer.apple.com/library/archive/samplecode/ConvertMovieSndTrack/ConvertMovieSndTrack.zip) | 2003-01-14 | | [ConvertToMovieJr](https://developer.apple.com/library/archive/samplecode/ConvertToMovieJr/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000886) | [macOS](https://developer.apple.com/library/archive/samplecode/ConvertToMovieJr/ConvertToMovieJr.zip) | 2003-01-14 | | [Converting an Image with Black Point Compensation](https://developer.apple.com/library/archive/samplecode/convertImage/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013498) | [macOS](https://developer.apple.com/library/archive/samplecode/convertImage/convertImage.zip) | 2013-07-30 | | [CopyBits vs. CopyMask](https://developer.apple.com/library/archive/samplecode/CopyBits_vs._CopyMask/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000076) | [macOS](https://developer.apple.com/library/archive/samplecode/CopyBits_vs/CopyBits_vs._CopyMask.zip) | 2003-07-22 | | [CopyBitsSpeedPalette](https://developer.apple.com/library/archive/samplecode/CopyBitsSpeedPalette/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000077) | [macOS](https://developer.apple.com/library/archive/samplecode/CopyBitsSpeedPalette/CopyBitsSpeedPalette.zip) | 2003-10-10 | | [CopyDeepMask](https://developer.apple.com/library/archive/samplecode/CopyDeepMask/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000078) | [macOS](https://developer.apple.com/library/archive/samplecode/CopyDeepMask/CopyDeepMask.zip) | 2003-10-10 | | [CopyMask](https://developer.apple.com/library/archive/samplecode/CopyMask/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000079) | [macOS](https://developer.apple.com/library/archive/samplecode/CopyMask/CopyMask.zip) | 2003-08-20 | | [CopyPasteTile](https://developer.apple.com/library/archive/samplecode/CopyPasteTile/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009040) | [iOS](https://developer.apple.com/library/archive/samplecode/CopyPasteTile/CopyPasteTile.zip) | 2010-06-28 | | [Core Animation QuickTime Layer](https://developer.apple.com/library/archive/samplecode/CoreAnimationQuickTimeLayer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004428) | [macOS](https://developer.apple.com/library/archive/samplecode/CoreAnimationQuickTimeLayer/CoreAnimationQuickTimeLayer.zip) | 2007-09-26 | | [Core Audio User-Space Driver Examples](https://developer.apple.com/library/archive/samplecode/AudioDriverExamples/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013590) | [macOS](https://developer.apple.com/library/archive/samplecode/AudioDriverExamples/AudioDriverExamples.zip) | 2013-10-04 | | [Core Audio Utility Classes](https://developer.apple.com/library/archive/samplecode/CoreAudioUtilityClasses/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012328) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/CoreAudioUtilityClasses/CoreAudioUtilityClasses.zip) | 2014-07-08 | | [Core Data HTML Store](https://developer.apple.com/library/archive/samplecode/HTMLStore/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004009) | [macOS](https://developer.apple.com/library/archive/samplecode/HTMLStore/HTMLStore.zip) | 2007-06-01 | | [Core Data Transformable Attributes](https://developer.apple.com/library/archive/samplecode/PhotoLocations/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008909) | [iOS](https://developer.apple.com/library/archive/samplecode/PhotoLocations/PhotoLocations.zip) | 2013-05-08 | | [Core Data Utility](https://developer.apple.com/library/archive/samplecode/CoreDataUtility/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012164) | [macOS](https://developer.apple.com/library/archive/samplecode/CoreDataUtility/CoreDataUtility.zip) | 2012-04-04 | | [Core Image Filters with Photos and Video for iOS](https://developer.apple.com/library/archive/samplecode/CIFunHouse/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013431) | [iOS](https://developer.apple.com/library/archive/samplecode/CIFunHouse/CIFunHouse.zip) | 2013-06-13 | | [CoreAnimationKioskStyleMenu](https://developer.apple.com/library/archive/samplecode/CoreAnimationKioskStyleMenu/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009512) | [macOS](https://developer.apple.com/library/archive/samplecode/CoreAnimationKioskStyleMenu/CoreAnimationKioskStyleMenu.zip) | 2011-06-01 | | [CoreAnimationText](https://developer.apple.com/library/archive/samplecode/CoreAnimationText/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009880) | [macOS](https://developer.apple.com/library/archive/samplecode/CoreAnimationText/CoreAnimationText.zip) | 2010-04-08 | | [CoreBluetooth: Health Thermometer](https://developer.apple.com/library/archive/samplecode/HealthThermometer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011370) | [macOS](https://developer.apple.com/library/archive/samplecode/CoreBluetoothHealthThermometer/CoreBluetoothHealthThermometer.zip) | 2018-03-08 | | [CoreBluetooth: Heart Rate Monitor](https://developer.apple.com/library/archive/samplecode/HeartRateMonitor/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011322) | [macOS](https://developer.apple.com/library/archive/samplecode/CoreBluetoothHeartRateMonitor/CoreBluetoothHeartRateMonitor.zip) | 2018-03-08 | | [CoreDataBooks](https://developer.apple.com/library/archive/samplecode/CoreDataBooks/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008405) | [iOS](https://developer.apple.com/library/archive/samplecode/CoreDataBooks/CoreDataBooks.zip) | 2014-05-08 | | [CoreImageGLTextureFBO](https://developer.apple.com/library/archive/samplecode/CoreImageGLTextureFBO/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007889) | [macOS](https://developer.apple.com/library/archive/samplecode/CoreImageGLTextureFBO/CoreImageGLTextureFBO.zip) | 2008-07-30 | | [CoreMediaIO](https://developer.apple.com/library/archive/samplecode/CoreMediaIO/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012293) | [macOS](https://developer.apple.com/library/archive/samplecode/CoreMediaIO/CoreMediaIO.zip) | 2012-10-23 | | [CoreRecipes](https://developer.apple.com/library/archive/samplecode/CoreRecipes/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003664) | [macOS](https://developer.apple.com/library/archive/samplecode/CoreRecipes/CoreRecipes.zip) | 2005-06-01 | | [CoreSample](https://developer.apple.com/library/archive/samplecode/CoreSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000663) | [macOS](https://developer.apple.com/library/archive/samplecode/CoreSample/CoreSample.zip) | 2003-01-14 | | [CoreTextArc](https://developer.apple.com/library/archive/samplecode/CoreTextArc/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004328) | [macOS](https://developer.apple.com/library/archive/samplecode/CoreTextArc/CoreTextArc.zip) | 2007-06-04 | | [CoreTextPageViewer](https://developer.apple.com/library/archive/samplecode/CoreTextPageViewer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010699) | [iOS](https://developer.apple.com/library/archive/samplecode/CoreTextPageViewer/CoreTextPageViewer.zip) | 2014-01-28 | | [CoreTextRTF](https://developer.apple.com/library/archive/samplecode/CoreTextRTF/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007772) | [macOS](https://developer.apple.com/library/archive/samplecode/CoreTextRTF/CoreTextRTF.zip) | 2011-08-22 | | [CoreTextTest](https://developer.apple.com/library/archive/samplecode/CoreTextTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004140) | [macOS](https://developer.apple.com/library/archive/samplecode/CoreTextTest/CoreTextTest.zip) | 2006-12-19 | | [CreateDirWCustIcon](https://developer.apple.com/library/archive/samplecode/CreateDirWCustIcon/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000030) | [macOS](https://developer.apple.com/library/archive/samplecode/CreateDirWCustIcon/CreateDirWCustIcon.zip) | 2003-07-22 | | [CreateMovie](https://developer.apple.com/library/archive/samplecode/CreateMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001035) | [macOS](https://developer.apple.com/library/archive/samplecode/CreateMovie/CreateMovie.zip) | 2003-01-14 | | [CreateMovie - C#](https://developer.apple.com/library/archive/samplecode/CreateMovieCSharp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003810) | [macOS](https://developer.apple.com/library/archive/samplecode/CreateMovieCSharp/CreateMovieCSharp.zip) | 2005-11-09 | | [CreateMovie - VB6](https://developer.apple.com/library/archive/samplecode/CreateMovieVB6/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003813) | [macOS](https://developer.apple.com/library/archive/samplecode/CreateMovieVB6/CreateMovieVB6.zip) | 2005-11-09 | | [CreateMovieFromReferences](https://developer.apple.com/library/archive/samplecode/CreateMovieFromReferences/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004432) | [macOS](https://developer.apple.com/library/archive/samplecode/CreateMovieFromReferences/CreateMovieFromReferences.zip) | 2007-08-31 | | [CreateMovieJava](https://developer.apple.com/library/archive/samplecode/CreateMovieJava/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000933) | [macOS](https://developer.apple.com/library/archive/samplecode/CreateMovieJava/CreateMovieJava.zip) | 2003-01-14 | | [CreatePictFile](https://developer.apple.com/library/archive/samplecode/CreatePictFile/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000934) | [macOS](https://developer.apple.com/library/archive/samplecode/CreatePictFile/CreatePictFile.zip) | 2006-05-11 | | [Creator Changer](https://developer.apple.com/library/archive/samplecode/Creator_Changer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000216) | [macOS](https://developer.apple.com/library/archive/samplecode/Creator_Changer/Creator_Changer.zip) | 2003-07-22 | | [Cropped Image](https://developer.apple.com/library/archive/samplecode/Cropped_Image/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000388) | [macOS](https://developer.apple.com/library/archive/samplecode/Cropped_Image/Cropped_Image.zip) | 2003-01-14 | | [CrossEvents](https://developer.apple.com/library/archive/samplecode/CrossEvents/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004324) | [macOS](https://developer.apple.com/library/archive/samplecode/CrossEvents/CrossEvents.zip) | 2007-05-31 | | [Crossing To-Many Relationships with Cocoa Bindings](https://developer.apple.com/library/archive/samplecode/TwoManyControllers/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004234) | [macOS](https://developer.apple.com/library/archive/samplecode/TwoManyControllers/TwoManyControllers.zip) | 2013-04-04 | | [CryptNoMore](https://developer.apple.com/library/archive/samplecode/CryptNoMore/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003444) | [macOS](https://developer.apple.com/library/archive/samplecode/CryptNoMore/CryptNoMore.zip) | 2008-03-17 | | [CryptoCompatibility](https://developer.apple.com/library/archive/samplecode/CryptoCompatibility/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013654) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/CryptoCompatibility/CryptoCompatibility.zip) | 2016-11-17 | | [CryptoExercise](https://developer.apple.com/library/archive/samplecode/CryptoExercise/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008019) | [iOS](https://developer.apple.com/library/archive/samplecode/CryptoExercise/CryptoExercise.zip) | 2018-06-04 | | [CryptoSample](https://developer.apple.com/library/archive/samplecode/CryptoSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001086) | [macOS](https://developer.apple.com/library/archive/samplecode/CryptoSample/CryptoSample.zip) | 2003-02-06 | | [CubePuzzle](https://developer.apple.com/library/archive/samplecode/CubePuzzle/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000521) | [macOS](https://developer.apple.com/library/archive/samplecode/CubePuzzle/CubePuzzle.zip) | 2003-04-21 | | [CullGroupSample](https://developer.apple.com/library/archive/samplecode/CullGroupSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000133) | [macOS](https://developer.apple.com/library/archive/samplecode/CullGroupSample/CullGroupSample.zip) | 2003-01-14 | | [CurrentAddress](https://developer.apple.com/library/archive/samplecode/CurrentAddress/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009469) | [iOS](https://developer.apple.com/library/archive/samplecode/CurrentAddress/CurrentAddress.zip) | 2016-01-28 | | [CurvesDemo](https://developer.apple.com/library/archive/samplecode/CurvesDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000936) | [macOS](https://developer.apple.com/library/archive/samplecode/CurvesDemo/CurvesDemo.zip) | 2003-01-14 | | [CurvesDemo.win](https://developer.apple.com/library/archive/samplecode/CurvesDemo.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000937) | [macOS](https://developer.apple.com/library/archive/samplecode/CurvesDemo/CurvesDemo.win.zip) | 2003-01-14 | | [Custom Animatable Property](https://developer.apple.com/library/archive/samplecode/sc2284/Introduction/Intro.html#//apple_ref/doc/uid/DTS40014302) | [iOS](https://developer.apple.com/library/archive/samplecode/CustomAnimatableProperty/CustomAnimatableProperty.zip) | 2014-04-02 | | [Custom View Controller Presentations and Transitions](https://developer.apple.com/library/archive/samplecode/CustomTransitions/Introduction/Intro.html#//apple_ref/doc/uid/TP40015158) | [iOS](https://developer.apple.com/library/archive/samplecode/CustomViewControllerPresentationsandTransitions/CustomViewControllerPresentationsandTransitions.zip) | 2016-01-28 | | [CustomAtomicStoreSubclass](https://developer.apple.com/library/archive/samplecode/CustomAtomicStoreSubclass/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004333) | [macOS](https://developer.apple.com/library/archive/samplecode/CustomAtomicStoreSubclass/CustomAtomicStoreSubclass.zip) | 2007-06-08 | | [CustomContentAccessibility](https://developer.apple.com/library/archive/samplecode/sc2216/Introduction/Intro.html#//apple_ref/doc/uid/DTS40014019) | [iOS](https://developer.apple.com/library/archive/samplecode/CustomContentAccessibility/CustomContentAccessibility.zip) | 2013-12-18 | | [CustomGet unresolved alias](https://developer.apple.com/library/archive/samplecode/CustomGet_unresolved_alias/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000044) | [macOS](https://developer.apple.com/library/archive/samplecode/CustomGet_unresolved_alias/CustomGet_unresolved_alias.zip) | 2003-03-13 | | [CustomHTTPProtocol](https://developer.apple.com/library/archive/samplecode/CustomHTTPProtocol/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013653) | [iOS](https://developer.apple.com/library/archive/samplecode/CustomHTTPProtocol/CustomHTTPProtocol.zip) | 2014-08-20 | | [CustomIcon](https://developer.apple.com/library/archive/samplecode/CustomIcon/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000183) | [macOS](https://developer.apple.com/library/archive/samplecode/CustomIcon/CustomIcon.zip) | 2003-01-14 | | [CustomMedia](https://developer.apple.com/library/archive/samplecode/CustomMedia/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000938) | [macOS](https://developer.apple.com/library/archive/samplecode/CustomMedia/CustomMedia.zip) | 2006-05-11 | | [CustomMediaIcons](https://developer.apple.com/library/archive/samplecode/CustomMediaIcons/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004394) | [macOS](https://developer.apple.com/library/archive/samplecode/CustomMediaIcons/CustomMediaIcons.zip) | 2007-07-10 | | [CustomMenus](https://developer.apple.com/library/archive/samplecode/CustomMenus/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010056) | [macOS](https://developer.apple.com/library/archive/samplecode/CustomMenus/CustomMenus.zip) | 2012-10-04 | | [CustomPicComments](https://developer.apple.com/library/archive/samplecode/CustomPicComments/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000080) | [macOS](https://developer.apple.com/library/archive/samplecode/CustomPicComments/CustomPicComments.zip) | 2003-10-10 | | [CustomPutAppend](https://developer.apple.com/library/archive/samplecode/CustomPutAppend/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000045) | [macOS](https://developer.apple.com/library/archive/samplecode/CustomPutAppend/CustomPutAppend.zip) | 2003-03-13 | | [CustomPutSuffix](https://developer.apple.com/library/archive/samplecode/CustomPutSuffix/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000046) | [macOS](https://developer.apple.com/library/archive/samplecode/CustomPutSuffix/CustomPutSuffix.zip) | 2003-03-13 | | [CustomWindow](https://developer.apple.com/library/archive/samplecode/CustomWindow/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000566) | [macOS](https://developer.apple.com/library/archive/samplecode/CustomWindow/CustomWindow.zip) | 2003-01-30 | | [CustomWindowWidget](https://developer.apple.com/library/archive/samplecode/CustomWindowWidget/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000632) | [macOS](https://developer.apple.com/library/archive/samplecode/CustomWindowWidget/CustomWindowWidget.zip) | 2003-01-30 | | [Custom_HIView_Tutorial](https://developer.apple.com/library/archive/samplecode/Custom_HIView_Tutorial/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003657) | [macOS](https://developer.apple.com/library/archive/samplecode/Custom_HIView_Tutorial/Custom_HIView_Tutorial.zip) | 2005-06-01 | | [Customize Reader Safari Extension](https://developer.apple.com/library/archive/samplecode/CustomizeReaderSafariExtension/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012308) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/CustomizeReaderSafariExtension/CustomizeReaderSafariExtension.zip) | 2012-06-11 | | [Customizing NSSavePanel](https://developer.apple.com/library/archive/samplecode/CustomSave/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004201) | [macOS](https://developer.apple.com/library/archive/samplecode/CustomSave/CustomSave.zip) | 2014-03-14 | | [CxxNewDelete](https://developer.apple.com/library/archive/samplecode/CxxNewDelete/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003967) | [macOS](https://developer.apple.com/library/archive/samplecode/CxxNewDelete/CxxNewDelete.zip) | 2011-05-13 | | [DMFkey Source](https://developer.apple.com/library/archive/samplecode/DMFkey_Source/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000436) | [macOS](https://developer.apple.com/library/archive/samplecode/DMFkey_Source/DMFkey_Source.zip) | 2003-01-14 | | [DNSSDObjects](https://developer.apple.com/library/archive/samplecode/DNSSDObjects/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011371) | [macOS](https://developer.apple.com/library/archive/samplecode/DNSSDObjects/DNSSDObjects.zip) | 2012-01-06 | | [DNSServiceMetaQuery](https://developer.apple.com/library/archive/samplecode/DNSServiceMetaQuery/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003330) | [macOS](https://developer.apple.com/library/archive/samplecode/DNSServiceMetaQuery/DNSServiceMetaQuery.zip) | 2005-06-01 | | [DRDataBurnCarbonUI](https://developer.apple.com/library/archive/samplecode/DRDataBurnCarbonUI/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003211) | [macOS](https://developer.apple.com/library/archive/samplecode/DRDataBurnCarbonUI/DRDataBurnCarbonUI.zip) | 2004-04-09 | | [DREraseCarbonUI](https://developer.apple.com/library/archive/samplecode/DREraseCarbonUI/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003210) | [macOS](https://developer.apple.com/library/archive/samplecode/DREraseCarbonUI/DREraseCarbonUI.zip) | 2004-04-09 | | [DSp Context SwitchOld](https://developer.apple.com/library/archive/samplecode/DSp_Context_SwitchOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000052) | [macOS](https://developer.apple.com/library/archive/samplecode/DSp_Context_SwitchOld/DSp_Context_SwitchOld.zip) | 2003-10-14 | | [DTS.Utilities](https://developer.apple.com/library/archive/samplecode/DTS.Utilities/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000277) | [macOS](https://developer.apple.com/library/archive/samplecode/DTS/DTS.Utilities.zip) | 2003-03-17 | | [DTSCPlusLibrary](https://developer.apple.com/library/archive/samplecode/DTSCPlusLibrary/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000731) | [macOS](https://developer.apple.com/library/archive/samplecode/DTSCPlusLibrary/DTSCPlusLibrary.zip) | 2003-01-14 | | [DTSCarbonShell](https://developer.apple.com/library/archive/samplecode/DTSCarbonShell/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004121) | [macOS](https://developer.apple.com/library/archive/samplecode/DTSCarbonShell/DTSCarbonShell.zip) | 2007-09-20 | | [Dashed Lines](https://developer.apple.com/library/archive/samplecode/Dashed_Lines/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000286) | [macOS](https://developer.apple.com/library/archive/samplecode/Dashed_Lines/Dashed_Lines.zip) | 2003-03-26 | | [Dashed-capped Lines](https://developer.apple.com/library/archive/samplecode/Dashed-capped_Lines/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000287) | [macOS](https://developer.apple.com/library/archive/samplecode/Dashed-capped_Lines/Dashed-capped_Lines.zip) | 2003-03-26 | | [DataBurn](https://developer.apple.com/library/archive/samplecode/DataBurn/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000465) | [macOS](https://developer.apple.com/library/archive/samplecode/DataBurn/DataBurn.zip) | 2012-05-09 | | [DateCell](https://developer.apple.com/library/archive/samplecode/DateCell/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008866) | [iOS](https://developer.apple.com/library/archive/samplecode/DateCell/DateCell.zip) | 2014-06-17 | | [DateDiff](https://developer.apple.com/library/archive/samplecode/DateDiff/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008830) | [macOS](https://developer.apple.com/library/archive/samplecode/DateDiff/DateDiff.zip) | 2012-06-07 | | [DatePicker: Using NSDatePicker control to display date and time](https://developer.apple.com/library/archive/samplecode/DatePicker/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004134) | [macOS](https://developer.apple.com/library/archive/samplecode/DatePickerUsingNSDatePickercontroltodisplaydateandtime/DatePickerUsingNSDatePickercontroltodisplaydateandtime.zip) | 2018-05-03 | | [DateSectionTitles: Custom Table Sections with NSFetchedResultsController](https://developer.apple.com/library/archive/samplecode/DateSectionTitles/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009939) | [iOS](https://developer.apple.com/library/archive/samplecode/DateSectionTitlesCustomTableSectionswithNSFetchedResultsController/DateSectionTitlesCustomTableSectionswithNSFetchedResultsController.zip) | 2017-12-21 | | [DebuggerPresence](https://developer.apple.com/library/archive/samplecode/DebuggerPresence/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000282) | [Xcode Developer Tools](https://developer.apple.com/library/archive/samplecode/DebuggerPresence/DebuggerPresence.zip) | 2003-07-22 | | [DecompressionAndScaling](https://developer.apple.com/library/archive/samplecode/DecompressionAndScaling/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000887) | [macOS](https://developer.apple.com/library/archive/samplecode/DecompressionAndScaling/DecompressionAndScaling.zip) | 2003-01-14 | | [Deep Image Display with OpenGL](https://developer.apple.com/library/archive/samplecode/DeepImageDisplayWithOpenGL/Introduction/Intro.html#//apple_ref/doc/uid/TP40016622) | [macOS](https://developer.apple.com/library/archive/samplecode/DeepImageDisplaywithOpenGL/DeepImageDisplaywithOpenGL.zip) | 2015-12-10 | | [Deep Image Display with Quartz](https://developer.apple.com/library/archive/samplecode/DeepImageDisplay/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012163) | [macOS](https://developer.apple.com/library/archive/samplecode/DeepImageDisplay/DeepImageDisplay.zip) | 2012-04-04 | | [DeepScreen Picker](https://developer.apple.com/library/archive/samplecode/DeepScreen_Picker/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000081) | [macOS](https://developer.apple.com/library/archive/samplecode/DeepScreen_Picker/DeepScreen_Picker.zip) | 2003-07-22 | | [DefProcs](https://developer.apple.com/library/archive/samplecode/DefProcs/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000184) | [macOS](https://developer.apple.com/library/archive/samplecode/DefProcs/DefProcs.zip) | 2003-01-14 | | [DefaultOutputUnit](https://developer.apple.com/library/archive/samplecode/DefaultOutputUnit/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008650) | [macOS](https://developer.apple.com/library/archive/samplecode/DefaultOutputUnit/DefaultOutputUnit.zip) | 2009-04-15 | | [DeferredShading](https://developer.apple.com/library/archive/samplecode/DeferredShading/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010088) | [macOS](https://developer.apple.com/library/archive/samplecode/DeferredShading/DeferredShading.zip) | 2015-07-08 | | [DelegateOnlyComponent](https://developer.apple.com/library/archive/samplecode/DelegateOnlyComponent/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000814) | [macOS](https://developer.apple.com/library/archive/samplecode/DelegateOnlyComponent/DelegateOnlyComponent.zip) | 2005-10-18 | | [DelegateOnlyComponentOld](https://developer.apple.com/library/archive/samplecode/DelegateOnlyComponentOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000354) | [macOS](https://developer.apple.com/library/archive/samplecode/DelegateOnlyComponentOld/DelegateOnlyComponentOld.zip) | 2003-10-27 | | [DemoAssistant](https://developer.apple.com/library/archive/samplecode/DemoAssistant/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008847) | [macOS](https://developer.apple.com/library/archive/samplecode/DemoAssistant/DemoAssistant.zip) | 2012-05-30 | | [DemoBots: Building a Cross Platform Game with SpriteKit and GameplayKit](https://developer.apple.com/library/archive/samplecode/DemoBots/Introduction/Intro.html#//apple_ref/doc/uid/TP40015179) | [tvOS\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/DemoBotsBuildingaCrossPlatformGamewithSpriteKitandGameplayKit/DemoBotsBuildingaCrossPlatformGamewithSpriteKitandGameplayKit.zip) | 2016-09-13 | | [DemoMonkey](https://developer.apple.com/library/archive/samplecode/DemoMonkey/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008848) | [macOS](https://developer.apple.com/library/archive/samplecode/DemoMonkey/DemoMonkey.zip) | 2010-08-31 | | [Denoise](https://developer.apple.com/library/archive/samplecode/Denoise/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008908) | [macOS](https://developer.apple.com/library/archive/samplecode/Denoise/Denoise.zip) | 2011-06-27 | | [Departments and Employees](https://developer.apple.com/library/archive/samplecode/DepartmentAndEmployees/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004314) | [macOS](https://developer.apple.com/library/archive/samplecode/DepartmentAndEmployees/DepartmentAndEmployees.zip) | 2007-05-31 | | [Desktop Sprites](https://developer.apple.com/library/archive/samplecode/Desktop_Sprites/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001036) | [macOS](https://developer.apple.com/library/archive/samplecode/Desktop_Sprites/Desktop_Sprites.zip) | 2003-01-14 | | [DesktopImage](https://developer.apple.com/library/archive/samplecode/DesktopImage/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008860) | [macOS](https://developer.apple.com/library/archive/samplecode/DesktopImage/DesktopImage.zip) | 2012-08-29 | | [DesktopSprites](https://developer.apple.com/library/archive/samplecode/DesktopSprites/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001066) | [macOS](https://developer.apple.com/library/archive/samplecode/DesktopSprites/DesktopSprites.zip) | 2003-02-25 | | [DesktopSprites.win](https://developer.apple.com/library/archive/samplecode/DesktopSprites.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001067) | [macOS](https://developer.apple.com/library/archive/samplecode/DesktopSprites/DesktopSprites.win.zip) | 2003-02-25 | | [DetachedController](https://developer.apple.com/library/archive/samplecode/DetachedController/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000940) | [macOS](https://developer.apple.com/library/archive/samplecode/DetachedController/DetachedController.zip) | 2003-01-14 | | [Detecting OpenGL Renderer Changes](https://developer.apple.com/library/archive/samplecode/BasicMultiGPUSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010094) | [macOS](https://developer.apple.com/library/archive/samplecode/BasicMultiGPUSample/BasicMultiGPUSample.zip) | 2014-06-25 | | [Deva_Example](https://developer.apple.com/library/archive/samplecode/Deva_Example/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009112) | [macOS](https://developer.apple.com/library/archive/samplecode/Deva_Example/Deva_Example.zip) | 2009-08-21 | | [DeviceListener](https://developer.apple.com/library/archive/samplecode/DeviceListener/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000467) | [macOS](https://developer.apple.com/library/archive/samplecode/DeviceListener/DeviceListener.zip) | 2003-07-17 | | [DeviceSelectCL](https://developer.apple.com/library/archive/samplecode/sc1245/Introduction/Intro.html#//apple_ref/doc/uid/DTS40014356) | [macOS](https://developer.apple.com/library/archive/samplecode/DeviceSelectCL/DeviceSelectCL.zip) | 2014-04-18 | | [DeviceSelectCLGL](https://developer.apple.com/library/archive/samplecode/sc1989/Introduction/Intro.html#//apple_ref/doc/uid/DTS40014358) | [macOS](https://developer.apple.com/library/archive/samplecode/DeviceSelectCLGL/DeviceSelectCLGL.zip) | 2014-04-18 | | [DiagnosticAUs](https://developer.apple.com/library/archive/samplecode/DiagnosticAUs/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008639) | [macOS](https://developer.apple.com/library/archive/samplecode/DiagnosticAUs/DiagnosticAUs.zip) | 2009-04-15 | | [DialogsToHIViews](https://developer.apple.com/library/archive/samplecode/DialogsToHIViews/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003344) | [macOS](https://developer.apple.com/library/archive/samplecode/DialogsToHIViews/DialogsToHIViews.zip) | 2005-08-24 | | [Dicey](https://developer.apple.com/library/archive/samplecode/Dicey/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004053) | [macOS](https://developer.apple.com/library/archive/samplecode/Dicey/Dicey.zip) | 2009-06-29 | | [Dictionary](https://developer.apple.com/library/archive/samplecode/Dictionary/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008855) | [macOS](https://developer.apple.com/library/archive/samplecode/Dictionary/Dictionary.zip) | 2011-04-27 | | [DictionaryController](https://developer.apple.com/library/archive/samplecode/DictionaryController/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004522) | [macOS](https://developer.apple.com/library/archive/samplecode/DictionaryController/DictionaryController.zip) | 2011-01-13 | | [DigitizerShell](https://developer.apple.com/library/archive/samplecode/DigitizerShell/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000799) | [macOS](https://developer.apple.com/library/archive/samplecode/DigitizerShell/DigitizerShell.zip) | 2003-01-14 | | [Dimmer2Effect](https://developer.apple.com/library/archive/samplecode/Dimmer2Effect/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000825) | [macOS](https://developer.apple.com/library/archive/samplecode/Dimmer2Effect/Dimmer2Effect.zip) | 2003-02-25 | | [Dimmer2Effect.win](https://developer.apple.com/library/archive/samplecode/Dimmer2Effect.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000826) | [macOS](https://developer.apple.com/library/archive/samplecode/Dimmer2Effect/Dimmer2Effect.win.zip) | 2003-02-25 | | [Direct Pixel Access](https://developer.apple.com/library/archive/samplecode/Direct_Pixel_Access/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000082) | [macOS](https://developer.apple.com/library/archive/samplecode/Direct_Pixel_Access/Direct_Pixel_Access.zip) | 2003-10-10 | | [DirectSetEntries](https://developer.apple.com/library/archive/samplecode/DirectSetEntries/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000142) | [macOS](https://developer.apple.com/library/archive/samplecode/DirectSetEntries/DirectSetEntries.zip) | 2003-01-14 | | [DisableEject](https://developer.apple.com/library/archive/samplecode/DisableEject/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000014) | [macOS](https://developer.apple.com/library/archive/samplecode/DisableEject/DisableEject.zip) | 2003-01-14 | | [Disk Icons](https://developer.apple.com/library/archive/samplecode/Disk_Icons/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000015) | [macOS](https://developer.apple.com/library/archive/samplecode/Disk_Icons/Disk_Icons.zip) | 2003-01-14 | | [DispatchFractal](https://developer.apple.com/library/archive/samplecode/DispatchFractal/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008922) | [macOS](https://developer.apple.com/library/archive/samplecode/DispatchFractal/DispatchFractal.zip) | 2009-06-05 | | [DispatchLife](https://developer.apple.com/library/archive/samplecode/DispatchLife/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007759) | [macOS](https://developer.apple.com/library/archive/samplecode/DispatchLife/DispatchLife.zip) | 2009-05-29 | | [DispatchWebServer](https://developer.apple.com/library/archive/samplecode/DispatchWebServer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007762) | [macOS](https://developer.apple.com/library/archive/samplecode/DispatchWebServer/DispatchWebServer.zip) | 2009-05-29 | | [Dispatch_Compared](https://developer.apple.com/library/archive/samplecode/Dispatch_Compared/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009215) | [macOS](https://developer.apple.com/library/archive/samplecode/Dispatch_Compared/Dispatch_Compared.zip) | 2009-09-08 | | [Dispatch_Samples](https://developer.apple.com/library/archive/samplecode/Dispatch_Samples/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008472) | [macOS](https://developer.apple.com/library/archive/samplecode/Dispatch_Samples/Dispatch_Samples.zip) | 2009-05-29 | | [Dispenser: GameplayKit State Machine Basics](https://developer.apple.com/library/archive/samplecode/Dispenser_GameplayKit/Introduction/Intro.html#//apple_ref/doc/uid/TP40016460) | [tvOS\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/DispenserGameplayKitStateMachineBasics/DispenserGameplayKitStateMachineBasics.zip) | 2016-09-13 | | [DisplayURL](https://developer.apple.com/library/archive/samplecode/DisplayURL/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003783) | [macOS](https://developer.apple.com/library/archive/samplecode/DisplayURL/DisplayURL.zip) | 2011-04-18 | | [DisplayVideo](https://developer.apple.com/library/archive/samplecode/DisplayVideo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000435) | [macOS](https://developer.apple.com/library/archive/samplecode/DisplayVideo/DisplayVideo.zip) | 2003-01-14 | | [DocInteraction](https://developer.apple.com/library/archive/samplecode/DocInteraction/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010052) | [iOS](https://developer.apple.com/library/archive/samplecode/DocInteraction/DocInteraction.zip) | 2014-06-17 | | [DockBrowser](https://developer.apple.com/library/archive/samplecode/DockBrowser/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000695) | [macOS](https://developer.apple.com/library/archive/samplecode/DockBrowser/DockBrowser.zip) | 2011-08-18 | | [DotView](https://developer.apple.com/library/archive/samplecode/DotView/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008850) | [macOS](https://developer.apple.com/library/archive/samplecode/DotView/DotView.zip) | 2017-08-17 | | [DotViewUndo](https://developer.apple.com/library/archive/samplecode/DotViewUndo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008851) | [macOS](https://developer.apple.com/library/archive/samplecode/DotViewUndo/DotViewUndo.zip) | 2017-08-17 | | [Double Buffer](https://developer.apple.com/library/archive/samplecode/Double_Buffer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000344) | [macOS](https://developer.apple.com/library/archive/samplecode/Double_Buffer/Double_Buffer.zip) | 2003-01-14 | | [DownloadFont](https://developer.apple.com/library/archive/samplecode/DownloadFont/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013404) | [iOS](https://developer.apple.com/library/archive/samplecode/DownloadFont/DownloadFont.zip) | 2013-06-07 | | [DragAndDrop Shell](https://developer.apple.com/library/archive/samplecode/DragAndDrop_Shell/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000765) | [macOS](https://developer.apple.com/library/archive/samplecode/DragAndDrop_Shell/DragAndDrop_Shell.zip) | 2003-01-14 | | [DragItemAround](https://developer.apple.com/library/archive/samplecode/DragItemAround/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003900) | [macOS](https://developer.apple.com/library/archive/samplecode/DragItemAround/DragItemAround.zip) | 2011-06-01 | | [DragNDropOutlineView: implementing drag and drop in an NSOutlineView](https://developer.apple.com/library/archive/samplecode/DragNDropOutlineView/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008831) | [macOS](https://developer.apple.com/library/archive/samplecode/DragNDropOutlineViewimplementingdraganddropinanNSOutlineView/DragNDropOutlineViewimplementingdraganddropinanNSOutlineView.zip) | 2015-02-09 | | [DragWindow INIT](https://developer.apple.com/library/archive/samplecode/DragWindow_INIT/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000185) | [macOS](https://developer.apple.com/library/archive/samplecode/DragWindow_INIT/DragWindow_INIT.zip) | 2003-01-14 | | [DragWindowGrid](https://developer.apple.com/library/archive/samplecode/DragWindowGrid/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000570) | [macOS](https://developer.apple.com/library/archive/samplecode/DragWindowGrid/DragWindowGrid.zip) | 2003-01-30 | | [DraggingSprites](https://developer.apple.com/library/archive/samplecode/DraggingSprites/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000942) | [macOS](https://developer.apple.com/library/archive/samplecode/DraggingSprites/DraggingSprites.zip) | 2003-01-14 | | [Draw Pixels](https://developer.apple.com/library/archive/samplecode/Draw_Pixels/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000524) | [macOS](https://developer.apple.com/library/archive/samplecode/Draw_Pixels/Draw_Pixels.zip) | 2003-07-16 | | [DrawSprocketTestOld](https://developer.apple.com/library/archive/samplecode/DrawSprocketTestOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000050) | [macOS](https://developer.apple.com/library/archive/samplecode/DrawSprocketTestOld/DrawSprocketTestOld.zip) | 2003-10-14 | | [DrawTextCodec](https://developer.apple.com/library/archive/samplecode/DrawTextCodec/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000815) | [macOS](https://developer.apple.com/library/archive/samplecode/DrawTextCodec/DrawTextCodec.zip) | 2003-01-14 | | [DrawableBroadcaster](https://developer.apple.com/library/archive/samplecode/DrawableBroadcaster/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000943) | [macOS](https://developer.apple.com/library/archive/samplecode/DrawableBroadcaster/DrawableBroadcaster.zip) | 2003-01-14 | | [DrawerMadness](https://developer.apple.com/library/archive/samplecode/DrawerMadness/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008832) | [macOS](https://developer.apple.com/library/archive/samplecode/DrawerMadness/DrawerMadness.zip) | 2012-06-05 | | [Drawing Along a Path Using Core Text with Cocoa](https://developer.apple.com/library/archive/samplecode/CoreTextArcCocoa/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007771) | [macOS](https://developer.apple.com/library/archive/samplecode/CoreTextArcCocoa/CoreTextArcCocoa.zip) | 2013-09-05 | | [DrillDownSave](https://developer.apple.com/library/archive/samplecode/DrillDownSave/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007800) | [iOS](https://developer.apple.com/library/archive/samplecode/DrillDownSave/DrillDownSave.zip) | 2010-06-24 | | [DriverGestalt Demo](https://developer.apple.com/library/archive/samplecode/DriverGestalt_Demo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000426) | [macOS](https://developer.apple.com/library/archive/samplecode/DriverGestalt_Demo/DriverGestalt_Demo.zip) | 2003-01-14 | | [DriverGestaltExplorer](https://developer.apple.com/library/archive/samplecode/DriverGestaltExplorer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000427) | [macOS](https://developer.apple.com/library/archive/samplecode/DriverGestaltExplorer/DriverGestaltExplorer.zip) | 2003-01-14 | | [DroneZoneOld](https://developer.apple.com/library/archive/samplecode/DroneZoneOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000051) | [macOS](https://developer.apple.com/library/archive/samplecode/DroneZoneOld/DroneZoneOld.zip) | 2003-10-14 | | [DropDraw](https://developer.apple.com/library/archive/samplecode/DropDraw/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003339) | [macOS](https://developer.apple.com/library/archive/samplecode/DropDraw/DropDraw.zip) | 2005-08-01 | | [DropPrint USB](https://developer.apple.com/library/archive/samplecode/DropPrint_USB/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000288) | [macOS](https://developer.apple.com/library/archive/samplecode/DropPrint_USB/DropPrint_USB.zip) | 2003-03-26 | | [Droste image processing effect](https://developer.apple.com/library/archive/samplecode/Droste/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010110) | [macOS](https://developer.apple.com/library/archive/samplecode/Droste/Droste.zip) | 2010-06-07 | | [DukeMovie](https://developer.apple.com/library/archive/samplecode/DukeMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000945) | [macOS](https://developer.apple.com/library/archive/samplecode/DukeMovie/DukeMovie.zip) | 2006-05-11 | | [DumpARPCache](https://developer.apple.com/library/archive/samplecode/DumpARPCache/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000229) | [macOS](https://developer.apple.com/library/archive/samplecode/DumpARPCache/DumpARPCache.zip) | 2003-07-22 | | [DumpNetworkSetup](https://developer.apple.com/library/archive/samplecode/DumpNetworkSetup/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000230) | [macOS](https://developer.apple.com/library/archive/samplecode/DumpNetworkSetup/DumpNetworkSetup.zip) | 2003-07-22 | | [Duplicate Finder Items](https://developer.apple.com/library/archive/samplecode/DuplicateFinderItems/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003717) | [macOS](https://developer.apple.com/library/archive/samplecode/DuplicateFinderItems/DuplicateFinderItems.zip) | 2005-06-06 | | [EADemo](https://developer.apple.com/library/archive/samplecode/EADemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010079) | [iOS](https://developer.apple.com/library/archive/samplecode/EADemo/EADemo.zip) | 2016-08-12 | | [EKReminderSuite](https://developer.apple.com/library/archive/samplecode/EKReminderSuite/Introduction/Intro.html#//apple_ref/doc/uid/TP40015203) | [iOS](https://developer.apple.com/library/archive/samplecode/EKReminderSuite/EKReminderSuite.zip) | 2015-11-13 | | [ENET sample](https://developer.apple.com/library/archive/samplecode/ENET_sample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000231) | [macOS](https://developer.apple.com/library/archive/samplecode/ENET_sample/ENET_sample.zip) | 2003-01-14 | | [Earthquakes: Populating a Core Data Store Using a Background Queue](https://developer.apple.com/library/archive/samplecode/Earthquakes/Introduction/Intro.html#//apple_ref/doc/uid/TP40014547) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/EarthquakesPopulatingaCoreDataStoreUsingaBackgroundQueue/EarthquakesPopulatingaCoreDataStoreUsingaBackgroundQueue.zip) | 2018-05-03 | | [Easy Video Grabber](https://developer.apple.com/library/archive/samplecode/Easy_Video_Grabber/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000320) | [macOS](https://developer.apple.com/library/archive/samplecode/Easy_Video_Grabber/Easy_Video_Grabber.zip) | 2003-01-14 | | [EasyPlayRecord](https://developer.apple.com/library/archive/samplecode/EasyPlayRecord/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000345) | [macOS](https://developer.apple.com/library/archive/samplecode/EasyPlayRecord/EasyPlayRecord.zip) | 2003-01-14 | | [EgretWakeup](https://developer.apple.com/library/archive/samplecode/EgretWakeup/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000017) | [macOS](https://developer.apple.com/library/archive/samplecode/EgretWakeup/EgretWakeup.zip) | 2003-01-14 | | [ElectricImageComponent](https://developer.apple.com/library/archive/samplecode/ElectricImageComponent/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000888) | [macOS](https://developer.apple.com/library/archive/samplecode/ElectricImageComponent/ElectricImageComponent.zip) | 2010-05-17 | | [ElectricImageComponent.win](https://developer.apple.com/library/archive/samplecode/ElectricImageComponent.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000889) | [macOS](https://developer.apple.com/library/archive/samplecode/ElectricImageComponent/ElectricImageComponent.win.zip) | 2004-01-23 | | [Embedding Instruments](https://developer.apple.com/library/archive/samplecode/Embedding_Instruments/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000321) | [macOS](https://developer.apple.com/library/archive/samplecode/Embedding_Instruments/Embedding_Instruments.zip) | 2003-01-14 | | [EmbededAppleScripts](https://developer.apple.com/library/archive/samplecode/EmbededAppleScripts/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000664) | [macOS](https://developer.apple.com/library/archive/samplecode/EmbededAppleScripts/EmbededAppleScripts.zip) | 2003-09-04 | | [Emporium: A Simple Shopping Experience with Apple Pay](https://developer.apple.com/library/archive/samplecode/Emporium/Introduction/Intro.html#//apple_ref/doc/uid/TP40016175) | [watchOS\|iOS](https://developer.apple.com/library/archive/samplecode/EmporiumASimpleShoppingExperiencewithApplePay/EmporiumASimpleShoppingExperiencewithApplePay.zip) | 2016-09-28 | | [EmporiumWeb: Request and handle Apple Pay payments on the web](https://developer.apple.com/library/archive/samplecode/EmporiumWeb/Introduction/Intro.html#//apple_ref/doc/uid/TP40017557) | [Safari](https://developer.apple.com/library/archive/samplecode/EmporiumWebRequestandhandleApplePaypaymentsontheweb/EmporiumWebRequestandhandleApplePaypaymentsontheweb.zip) | 2016-10-25 | | [Empty Engine](https://developer.apple.com/library/archive/samplecode/Empty_Engine/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000152) | [macOS](https://developer.apple.com/library/archive/samplecode/Empty_Engine/Empty_Engine.zip) | 2003-01-14 | | [EmptyFS](https://developer.apple.com/library/archive/samplecode/EmptyFS/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003966) | [macOS](https://developer.apple.com/library/archive/samplecode/EmptyFS/EmptyFS.zip) | 2006-11-09 | | [EnableSoundThrough](https://developer.apple.com/library/archive/samplecode/EnableSoundThrough/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000346) | [macOS](https://developer.apple.com/library/archive/samplecode/EnableSoundThrough/EnableSoundThrough.zip) | 2003-01-14 | | [EnhancedAudioBurn](https://developer.apple.com/library/archive/samplecode/EnhancedAudioBurn/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003456) | [macOS](https://developer.apple.com/library/archive/samplecode/EnhancedAudioBurn/EnhancedAudioBurn.zip) | 2005-07-06 | | [EnhancedDataBurn](https://developer.apple.com/library/archive/samplecode/EnhancedDataBurn/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000468) | [macOS](https://developer.apple.com/library/archive/samplecode/EnhancedDataBurn/EnhancedDataBurn.zip) | 2003-01-14 | | [Enumeration Sample](https://developer.apple.com/library/archive/samplecode/FastEnumerationSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009411) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/FastEnumerationSample/FastEnumerationSample.zip) | 2014-02-04 | | [Eraser](https://developer.apple.com/library/archive/samplecode/Eraser/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000469) | [macOS](https://developer.apple.com/library/archive/samplecode/Eraser/Eraser.zip) | 2003-01-14 | | [EvenBetterAuthorizationSample](https://developer.apple.com/library/archive/samplecode/EvenBetterAuthorizationSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013768) | [macOS](https://developer.apple.com/library/archive/samplecode/EvenBetterAuthorizationSample/EvenBetterAuthorizationSample.zip) | 2013-09-17 | | [EventMonitorTest](https://developer.apple.com/library/archive/samplecode/EventMonitorTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003812) | [macOS](https://developer.apple.com/library/archive/samplecode/EventMonitorTest/EventMonitorTest.zip) | 2005-11-09 | | [Example Video Panel](https://developer.apple.com/library/archive/samplecode/Example_Video_Panel/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000322) | [macOS](https://developer.apple.com/library/archive/samplecode/Example_Video_Panel/Example_Video_Panel.zip) | 2003-01-14 | | [Example app using Photos framework](https://developer.apple.com/library/archive/samplecode/UsingPhotosFramework/Introduction/Intro.html#//apple_ref/doc/uid/TP40014575) | [tvOS\|iOS](https://developer.apple.com/library/archive/samplecode/ExampleappusingPhotosframework/ExampleappusingPhotosframework.zip) | 2017-02-24 | | [ExampleCodec](https://developer.apple.com/library/archive/samplecode/ExampleCodec/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000816) | [macOS](https://developer.apple.com/library/archive/samplecode/ExampleCodec/ExampleCodec.zip) | 2003-01-14 | | [ExampleIPBCodec](https://developer.apple.com/library/archive/samplecode/ExampleIPBCodec/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003589) | [macOS](https://developer.apple.com/library/archive/samplecode/ExampleIPBCodec/ExampleIPBCodec.zip) | 2005-08-16 | | [ExampleVideoPanel](https://developer.apple.com/library/archive/samplecode/ExampleVideoPanel/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000800) | [macOS](https://developer.apple.com/library/archive/samplecode/ExampleVideoPanel/ExampleVideoPanel.zip) | 2003-01-14 | | [ExampleVideoPanel.win](https://developer.apple.com/library/archive/samplecode/ExampleVideoPanel.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000801) | [macOS](https://developer.apple.com/library/archive/samplecode/ExampleVideoPanel/ExampleVideoPanel.win.zip) | 2003-01-14 | | [Exhibition: An Adaptive OS X App](https://developer.apple.com/library/archive/samplecode/Exhibition/Introduction/Intro.html#//apple_ref/doc/uid/TP40016178) | [macOS](https://developer.apple.com/library/archive/samplecode/ExhibitionAnAdaptiveOSXApp/ExhibitionAnAdaptiveOSXApp.zip) | 2016-09-28 | | [Extended Audio File Conversion Test](https://developer.apple.com/library/archive/samplecode/iPhoneExtAudioFileConvertTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009222) | [iOS](https://developer.apple.com/library/archive/samplecode/ExtendedAudioFileConversionTest/ExtendedAudioFileConversionTest.zip) | 2016-09-29 | | [ExtractMovieAudioToAIFF](https://developer.apple.com/library/archive/samplecode/ExtractMovieAudioToAIFF/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003824) | [macOS](https://developer.apple.com/library/archive/samplecode/ExtractMovieAudioToAIFF/ExtractMovieAudioToAIFF.zip) | 2006-03-31 | | [FBOBunnies](https://developer.apple.com/library/archive/samplecode/FBOBunnies/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004086) | [macOS](https://developer.apple.com/library/archive/samplecode/FBOBunnies/FBOBunnies.zip) | 2006-09-18 | | [FSCopyObject](https://developer.apple.com/library/archive/samplecode/FSCopyObject/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000472) | [macOS](https://developer.apple.com/library/archive/samplecode/FSCopyObject/FSCopyObject.zip) | 2004-03-19 | | [FSCreateFileAndOpenForkUnicode](https://developer.apple.com/library/archive/samplecode/FSCreateFileAndOpenForkUnicode/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003677) | [macOS](https://developer.apple.com/library/archive/samplecode/FSCreateFileAndOpenForkUnicode/FSCreateFileAndOpenForkUnicode.zip) | 2005-06-01 | | [FSFileOperation](https://developer.apple.com/library/archive/samplecode/FSFileOperation/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003601) | [macOS](https://developer.apple.com/library/archive/samplecode/FSFileOperation/FSFileOperation.zip) | 2005-06-06 | | [FSMegaInfo](https://developer.apple.com/library/archive/samplecode/FSMegaInfo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004032) | [macOS](https://developer.apple.com/library/archive/samplecode/FSMegaInfo/FSMegaInfo.zip) | 2008-02-25 | | [FSRemoveInheritedACEs](https://developer.apple.com/library/archive/samplecode/FSRemoveInheritedACEs/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003667) | [macOS](https://developer.apple.com/library/archive/samplecode/FSRemoveInheritedACEs/FSRemoveInheritedACEs.zip) | 2005-06-01 | | [FSReplaceObject](https://developer.apple.com/library/archive/samplecode/FSReplaceObject/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003974) | [macOS](https://developer.apple.com/library/archive/samplecode/FSReplaceObject/FSReplaceObject.zip) | 2007-02-14 | | [Fader](https://developer.apple.com/library/archive/samplecode/Fader/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003564) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/Fader/Fader.zip) | 2007-09-12 | | [FancyAbout](https://developer.apple.com/library/archive/samplecode/FancyAbout/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000390) | [macOS](https://developer.apple.com/library/archive/samplecode/FancyAbout/FancyAbout.zip) | 2012-06-07 | | [FastDitherUsingQT](https://developer.apple.com/library/archive/samplecode/FastDitherUsingQT/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000827) | [macOS](https://developer.apple.com/library/archive/samplecode/FastDitherUsingQT/FastDitherUsingQT.zip) | 2003-02-25 | | [Favorites Safari Extension](https://developer.apple.com/library/archive/samplecode/FavoritesSafariExtension/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010128) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/FavoritesSafariExtension/FavoritesSafariExtension.zip) | 2010-06-08 | | [Fiendishthngs](https://developer.apple.com/library/archive/samplecode/Fiendishthngs/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003446) | [macOS](https://developer.apple.com/library/archive/samplecode/Fiendishthngs/Fiendishthngs.zip) | 2007-09-13 | | [File Wrappers with Core Data Documents](https://developer.apple.com/library/archive/samplecode/PersistentDocumentFileWrappers/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008763) | [macOS](https://developer.apple.com/library/archive/samplecode/PersistentDocumentFileWrappers/PersistentDocumentFileWrappers.zip) | 2009-04-29 | | [FileNotification](https://developer.apple.com/library/archive/samplecode/FileNotification/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003143) | [macOS](https://developer.apple.com/library/archive/samplecode/FileNotification/FileNotification.zip) | 2005-10-27 | | [FileSharingOn](https://developer.apple.com/library/archive/samplecode/FileSharingOn/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000034) | [macOS](https://developer.apple.com/library/archive/samplecode/FileSharingOn/FileSharingOn.zip) | 2003-07-22 | | [FilterDemo](https://developer.apple.com/library/archive/samplecode/FilterDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003570) | [macOS](https://developer.apple.com/library/archive/samplecode/FilterDemo/FilterDemo.zip) | 2012-08-28 | | [Final Cut Pro X Workflows](https://developer.apple.com/library/archive/samplecode/sc2280/Introduction/Intro.html#//apple_ref/doc/uid/DTS40014023) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleAssetManagerSample/SimpleAssetManagerSample.zip) | 2013-12-19 | | [FinalCutPro_AppleEvents](https://developer.apple.com/library/archive/samplecode/FinalCutPro_AppleEvents/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004110) | [macOS](https://developer.apple.com/library/archive/samplecode/FinalCutPro_AppleEvents/FinalCutPro_AppleEvents.zip) | 2009-07-24 | | [FinalCutServerIntegrationSample](https://developer.apple.com/library/archive/samplecode/FinalCutServerIntegrationSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007789) | [macOS](https://developer.apple.com/library/archive/samplecode/FinalCutServerIntegrationSample/FinalCutServerIntegrationSample.zip) | 2008-06-07 | | [FindPrinter](https://developer.apple.com/library/archive/samplecode/FindPrinter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000289) | [macOS](https://developer.apple.com/library/archive/samplecode/FindPrinter/FindPrinter.zip) | 2003-01-14 | | [FindSerialPorts](https://developer.apple.com/library/archive/samplecode/FindSerialPorts/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000001) | [macOS](https://developer.apple.com/library/archive/samplecode/FindSerialPorts/FindSerialPorts.zip) | 2003-01-15 | | [FinderDragPro](https://developer.apple.com/library/archive/samplecode/FinderDragPro/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000665) | [macOS](https://developer.apple.com/library/archive/samplecode/FinderDragPro/FinderDragPro.zip) | 2003-01-14 | | [FinderLaunch](https://developer.apple.com/library/archive/samplecode/FinderLaunch/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000666) | [macOS](https://developer.apple.com/library/archive/samplecode/FinderLaunch/FinderLaunch.zip) | 2003-10-14 | | [FingerTips](https://developer.apple.com/library/archive/samplecode/FingerTips/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008124) | [Safari](https://developer.apple.com/library/archive/samplecode/FingerTips/FingerTips.zip) | 2008-12-09 | | [Fire](https://developer.apple.com/library/archive/samplecode/Fire/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009036) | [macOS](https://developer.apple.com/library/archive/samplecode/Fire/Fire.zip) | 2011-04-15 | | [Fireworks](https://developer.apple.com/library/archive/samplecode/Fireworks/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009114) | [macOS](https://developer.apple.com/library/archive/samplecode/Fireworks/Fireworks.zip) | 2016-03-10 | | [Fit: Store and Retrieve HealthKit Data](https://developer.apple.com/library/archive/samplecode/Fit/Introduction/Intro.html#//apple_ref/doc/uid/TP40014583) | [iOS](https://developer.apple.com/library/archive/samplecode/FitStoreandRetrieveHealthKitData/FitStoreandRetrieveHealthKitData.zip) | 2016-10-25 | | [Flags: A demonstration of automatic RTL support in Asset Catalogs and UIStackViews](https://developer.apple.com/library/archive/samplecode/Flags/Introduction/Intro.html#//apple_ref/doc/uid/TP40017471) | [iOS](https://developer.apple.com/library/archive/samplecode/FlagsAdemonstrationofautomaticRTLsupportinAssetCatalogsandUIStackViews/FlagsAdemonstrationofautomaticRTLsupportinAssetCatalogsandUIStackViews.zip) | 2016-10-27 | | [FloatingWindow](https://developer.apple.com/library/archive/samplecode/FloatingWindow/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000633) | [macOS](https://developer.apple.com/library/archive/samplecode/FloatingWindow/FloatingWindow.zip) | 2003-10-24 | | [Floppy II](https://developer.apple.com/library/archive/samplecode/Floppy_II/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000016) | [macOS](https://developer.apple.com/library/archive/samplecode/Floppy_II/Floppy_II.zip) | 2003-01-14 | | [FogStyleSample](https://developer.apple.com/library/archive/samplecode/FogStyleSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000134) | [macOS](https://developer.apple.com/library/archive/samplecode/FogStyleSample/FogStyleSample.zip) | 2003-01-14 | | [Footprint: Indoor Positioning with Core Location](https://developer.apple.com/library/archive/samplecode/footprint/Introduction/Intro.html#//apple_ref/doc/uid/TP40014457) | [iOS](https://developer.apple.com/library/archive/samplecode/FootprintIndoorPositioningwithCoreLocation/FootprintIndoorPositioningwithCoreLocation.zip) | 2016-09-28 | | [ForceTouchCatalog: Using the Force Touch Trackpad API](https://developer.apple.com/library/archive/samplecode/ForceTouchCatalog/Introduction/Intro.html#//apple_ref/doc/uid/TP40016148) | [macOS](https://developer.apple.com/library/archive/samplecode/ForceTouchCatalogUsingtheForceTouchTrackpadAPI/ForceTouchCatalogUsingtheForceTouchTrackpadAPI.zip) | 2016-09-28 | | [FormatAsDOS](https://developer.apple.com/library/archive/samplecode/FormatAsDOS/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000428) | [macOS](https://developer.apple.com/library/archive/samplecode/FormatAsDOS/FormatAsDOS.zip) | 2003-01-14 | | [Formulaic](https://developer.apple.com/library/archive/samplecode/Formulaic/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008932) | [iOS](https://developer.apple.com/library/archive/samplecode/Formulaic/Formulaic.zip) | 2010-07-01 | | [Fortune](https://developer.apple.com/library/archive/samplecode/Fortune/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003694) | [macOS](https://developer.apple.com/library/archive/samplecode/Fortune/Fortune.zip) | 2005-06-01 | | [ForwardInvocation](https://developer.apple.com/library/archive/samplecode/ForwardInvocation/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008833) | [macOS](https://developer.apple.com/library/archive/samplecode/ForwardInvocation/ForwardInvocation.zip) | 2009-05-26 | | [FourInARow: Using the GameplayKit Minmax Strategist for Opponent AI](https://developer.apple.com/library/archive/samplecode/FourInARow/Introduction/Intro.html#//apple_ref/doc/uid/TP40016142) | [iOS](https://developer.apple.com/library/archive/samplecode/FourInARowUsingtheGameplayKitMinmaxStrategistforOpponentAI/FourInARowUsingtheGameplayKitMinmaxStrategistforOpponentAI.zip) | 2015-09-16 | | [Fox 2: SceneKit WWDC 2017 sample code](https://developer.apple.com/library/archive/samplecode/scenekit-2017/Introduction/Intro.html#//apple_ref/doc/uid/TP40017656) | [tvOS\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/Fox2SceneKitWWDC2017samplecode/Fox2SceneKitWWDC2017samplecode.zip) | 2018-04-05 | | [Fox: Building a SceneKit Game with the Xcode Scene Editor](https://developer.apple.com/library/archive/samplecode/Fox/Introduction/Intro.html#//apple_ref/doc/uid/TP40016154) | [tvOS\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/FoxBuildingaSceneKitGamewiththeXcodeSceneEditor/FoxBuildingaSceneKitGamewiththeXcodeSceneEditor.zip) | 2016-09-13 | | [Fragment Tool](https://developer.apple.com/library/archive/samplecode/Fragment_Tool/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000572) | [macOS](https://developer.apple.com/library/archive/samplecode/Fragment_Tool/Fragment_Tool.zip) | 2003-01-30 | | [FrameStepper](https://developer.apple.com/library/archive/samplecode/FrameStepper/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000947) | [macOS](https://developer.apple.com/library/archive/samplecode/FrameStepper/FrameStepper.zip) | 2003-01-14 | | [FrameStepper.win](https://developer.apple.com/library/archive/samplecode/FrameStepper.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000948) | [macOS](https://developer.apple.com/library/archive/samplecode/FrameStepper/FrameStepper.win.zip) | 2003-01-14 | | [FreqForEverChange](https://developer.apple.com/library/archive/samplecode/FreqForEverChange/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000347) | [macOS](https://developer.apple.com/library/archive/samplecode/FreqForEverChange/FreqForEverChange.zip) | 2003-01-14 | | [From A View to A Movie](https://developer.apple.com/library/archive/samplecode/From_A_View_to_A_Movie/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009025) | [macOS](https://developer.apple.com/library/archive/samplecode/From_A_View_to_A_Movie/From_A_View_to_A_Movie.zip) | 2013-01-02 | | [From A View to A Picture](https://developer.apple.com/library/archive/samplecode/From_A_View_To_A_Picture/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009024) | [macOS](https://developer.apple.com/library/archive/samplecode/From_A_View_To_A_Picture/From_A_View_To_A_Picture.zip) | 2013-01-02 | | [FullScreen](https://developer.apple.com/library/archive/samplecode/FullScreen/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000498) | [macOS](https://developer.apple.com/library/archive/samplecode/FullScreen/FullScreen.zip) | 2003-01-14 | | [FullScreenWindow](https://developer.apple.com/library/archive/samplecode/FullScreenWindow/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011188) | [macOS](https://developer.apple.com/library/archive/samplecode/FullScreenWindow/FullScreenWindow.zip) | 2012-08-29 | | [FunHouse](https://developer.apple.com/library/archive/samplecode/FunHouse/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009216) | [macOS](https://developer.apple.com/library/archive/samplecode/FunHouse/FunHouse.zip) | 2014-05-07 | | [FunWithFileDialogs](https://developer.apple.com/library/archive/samplecode/FunWithFileDialogs/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000678) | [macOS](https://developer.apple.com/library/archive/samplecode/FunWithFileDialogs/FunWithFileDialogs.zip) | 2003-04-30 | | [FunkyOverlayWindow](https://developer.apple.com/library/archive/samplecode/FunkyOverlayWindow/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000391) | [macOS](https://developer.apple.com/library/archive/samplecode/FunkyOverlayWindow/FunkyOverlayWindow.zip) | 2011-07-26 | | [GDevVideo](https://developer.apple.com/library/archive/samplecode/GDevVideo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000083) | [macOS](https://developer.apple.com/library/archive/samplecode/GDevVideo/GDevVideo.zip) | 2003-07-22 | | [GKAchievements](https://developer.apple.com/library/archive/samplecode/GKAchievements/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011367) | [iOS](https://developer.apple.com/library/archive/samplecode/GKAchievements/GKAchievements.zip) | 2011-12-06 | | [GKAuthentication](https://developer.apple.com/library/archive/samplecode/GKAuthentication/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010933) | [iOS](https://developer.apple.com/library/archive/samplecode/GKAuthentication/GKAuthentication.zip) | 2011-04-27 | | [GKLeaderboards](https://developer.apple.com/library/archive/samplecode/GKLeaderboards/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011368) | [iOS](https://developer.apple.com/library/archive/samplecode/GKLeaderboards/GKLeaderboards.zip) | 2011-12-06 | | [GKRocket](https://developer.apple.com/library/archive/samplecode/GKRocket/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009747) | [iOS](https://developer.apple.com/library/archive/samplecode/GKRocket/GKRocket.zip) | 2011-03-15 | | [GKTank](https://developer.apple.com/library/archive/samplecode/GKTank/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008918) | [iOS](https://developer.apple.com/library/archive/samplecode/GKTank/GKTank.zip) | 2009-06-08 | | [GKTapper](https://developer.apple.com/library/archive/samplecode/GKTapper/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010283) | [iOS](https://developer.apple.com/library/archive/samplecode/GKTapper/GKTapper.zip) | 2010-12-10 | | [GL3 Text](https://developer.apple.com/library/archive/samplecode/GL3_Text/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013069) | [macOS](https://developer.apple.com/library/archive/samplecode/GL3_Text/GL3_Text.zip) | 2014-10-16 | | [GLAirplay](https://developer.apple.com/library/archive/samplecode/GLAirplay/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013259) | [iOS](https://developer.apple.com/library/archive/samplecode/GLAirplay/GLAirplay.zip) | 2016-08-12 | | [GLCameraRipple](https://developer.apple.com/library/archive/samplecode/GLCameraRipple/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011222) | [iOS](https://developer.apple.com/library/archive/samplecode/GLCameraRipple/GLCameraRipple.zip) | 2013-02-21 | | [GLCarbon1ContextPbuffer](https://developer.apple.com/library/archive/samplecode/GLCarbon1ContextPbuffer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003144) | [macOS](https://developer.apple.com/library/archive/samplecode/GLCarbon1ContextPbuffer/GLCarbon1ContextPbuffer.zip) | 2004-03-26 | | [GLCarbonSharedPbuffer](https://developer.apple.com/library/archive/samplecode/GLCarbonSharedPbuffer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003149) | [macOS](https://developer.apple.com/library/archive/samplecode/GLCarbonSharedPbuffer/GLCarbonSharedPbuffer.zip) | 2004-03-26 | | [GLChildWindowDemo](https://developer.apple.com/library/archive/samplecode/GLChildWindowDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000526) | [macOS](https://developer.apple.com/library/archive/samplecode/GLChildWindowDemo/GLChildWindowDemo.zip) | 2003-04-21 | | [GLES2Sample](https://developer.apple.com/library/archive/samplecode/GLES2Sample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009188) | [iOS](https://developer.apple.com/library/archive/samplecode/GLES2Sample/GLES2Sample.zip) | 2010-07-07 | | [GLEssentials](https://developer.apple.com/library/archive/samplecode/GLEssentials/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010104) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/GLEssentials/GLEssentials.zip) | 2015-08-07 | | [GLFullScreen](https://developer.apple.com/library/archive/samplecode/GLFullScreen/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009820) | [macOS](https://developer.apple.com/library/archive/samplecode/GLFullScreen/GLFullScreen.zip) | 2010-12-01 | | [GLGravity](https://developer.apple.com/library/archive/samplecode/GLGravity/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007327) | [iOS](https://developer.apple.com/library/archive/samplecode/GLGravity/GLGravity.zip) | 2010-07-06 | | [GLImageProcessing](https://developer.apple.com/library/archive/samplecode/GLImageProcessing/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009053) | [iOS](https://developer.apple.com/library/archive/samplecode/GLImageProcessing/GLImageProcessing.zip) | 2014-03-25 | | [GLPaint](https://developer.apple.com/library/archive/samplecode/GLPaint/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007328) | [iOS](https://developer.apple.com/library/archive/samplecode/GLPaint/GLPaint.zip) | 2014-05-19 | | [GLSL Basics Cocoa](https://developer.apple.com/library/archive/samplecode/GLSLBasicsCocoaDL/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004403) | [macOS](https://developer.apple.com/library/archive/samplecode/GLSLBasicsCocoaDL/GLSLBasicsCocoaDL.zip) | 2008-07-30 | | [GLSL Showpiece Lite](https://developer.apple.com/library/archive/samplecode/GLSLShowpieceLite/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004295) | [macOS](https://developer.apple.com/library/archive/samplecode/GLSLShowpieceLite/GLSLShowpieceLite.zip) | 2007-11-05 | | [GLSLShowpiece](https://developer.apple.com/library/archive/samplecode/GLSLShowpiece/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003935) | [macOS](https://developer.apple.com/library/archive/samplecode/GLSLShowpiece/GLSLShowpiece.zip) | 2006-07-17 | | [GLSprite](https://developer.apple.com/library/archive/samplecode/GLSprite/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007325) | [iOS](https://developer.apple.com/library/archive/samplecode/GLSprite/GLSprite.zip) | 2010-08-18 | | [GLTextureAtlas](https://developer.apple.com/library/archive/samplecode/GLTextureAtlas/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009014) | [iOS](https://developer.apple.com/library/archive/samplecode/GLTextureAtlas/GLTextureAtlas.zip) | 2014-04-07 | | [GLUT](https://developer.apple.com/library/archive/samplecode/glut/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000528) | [macOS](https://developer.apple.com/library/archive/samplecode/glut/glut.zip) | 2008-02-08 | | [GLUTBasics](https://developer.apple.com/library/archive/samplecode/GLUTBasics/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003150) | [macOS](https://developer.apple.com/library/archive/samplecode/GLUTBasics/GLUTBasics.zip) | 2004-03-26 | | [GLUTStereo](https://developer.apple.com/library/archive/samplecode/GLUTStereo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000531) | [macOS](https://developer.apple.com/library/archive/samplecode/GLUTStereo/GLUTStereo.zip) | 2009-07-02 | | [GLUTSurfaceTexture](https://developer.apple.com/library/archive/samplecode/GLUTSurfaceTexture/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000532) | [macOS](https://developer.apple.com/library/archive/samplecode/GLUTSurfaceTexture/GLUTSurfaceTexture.zip) | 2004-03-26 | | [GLUT_for_OS_X](https://developer.apple.com/library/archive/samplecode/GLUT_for_OS_X/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000530) | [macOS](https://developer.apple.com/library/archive/samplecode/GLUT_for_OS_X/GLUT_for_OS_X.zip) | 2003-01-14 | | [GPU Histogram](https://developer.apple.com/library/archive/samplecode/gpu_histogram/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009450) | [macOS](https://developer.apple.com/library/archive/samplecode/gpu_histogram/gpu_histogram.zip) | 2010-01-04 | | [GXSetDefaultDTP](https://developer.apple.com/library/archive/samplecode/GXSetDefaultDTP/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000291) | [macOS](https://developer.apple.com/library/archive/samplecode/GXSetDefaultDTP/GXSetDefaultDTP.zip) | 2003-01-14 | | [Gamma Filter for FxPlug and AE](https://developer.apple.com/library/archive/samplecode/GammaFilterforFxPlugandAE/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004382) | [macOS](https://developer.apple.com/library/archive/samplecode/GammaFilterforFxPlugandAE/GammaFilterforFxPlugandAE.zip) | 2008-06-02 | | [GeekGameBoard](https://developer.apple.com/library/archive/samplecode/GeekGameBoard/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004548) | [macOS](https://developer.apple.com/library/archive/samplecode/GeekGameBoard/GeekGameBoard.zip) | 2007-12-19 | | [GenericKeychain](https://developer.apple.com/library/archive/samplecode/GenericKeychain/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007797) | [iOS](https://developer.apple.com/library/archive/samplecode/GenericKeychain/GenericKeychain.zip) | 2016-09-13 | | [GeocoderDemo: Uses CLGeocoder for forward and reverse geocoding](https://developer.apple.com/library/archive/samplecode/GeocoderDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011097) | [iOS](https://developer.apple.com/library/archive/samplecode/GeocoderDemoUsesCLGeocoderforforwardandreversegeocoding/GeocoderDemoUsesCLGeocoderforforwardandreversegeocoding.zip) | 2015-10-30 | | [Geolocation](https://developer.apple.com/library/archive/samplecode/Geolocation/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010384) | [Safari](https://developer.apple.com/library/archive/samplecode/Geolocation/Geolocation.zip) | 2010-10-06 | | [Geometric Primitives: Exact Orientation and Incircle Predicates using simd](https://developer.apple.com/library/archive/samplecode/GeometricPrimitives/Introduction/Intro.html#//apple_ref/doc/uid/TP40017307) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/GeometricPrimitivesExactOrientationandIncirclePredicatesusingsimd/GeometricPrimitivesExactOrientationandIncirclePredicatesusingsimd.zip) | 2016-09-28 | | [Geometry Samples](https://developer.apple.com/library/archive/samplecode/Geometry_Samples/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000102) | [macOS](https://developer.apple.com/library/archive/samplecode/Geometry_Samples/Geometry_Samples.zip) | 2003-01-14 | | [GeometryTest](https://developer.apple.com/library/archive/samplecode/GeometryTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000103) | [macOS](https://developer.apple.com/library/archive/samplecode/GeometryTest/GeometryTest.zip) | 2003-01-14 | | [Get Battery Status](https://developer.apple.com/library/archive/samplecode/BatteryStatus/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008812) | [iOS](https://developer.apple.com/library/archive/samplecode/BatteryStatus/BatteryStatus.zip) | 2013-08-15 | | [Get Ethernet Address](https://developer.apple.com/library/archive/samplecode/Get_Ethernet_Address/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000232) | [macOS](https://developer.apple.com/library/archive/samplecode/Get_Ethernet_Address/Get_Ethernet_Address.zip) | 2003-01-14 | | [Get LAP Connection](https://developer.apple.com/library/archive/samplecode/Get_LAP_Connection/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000233) | [macOS](https://developer.apple.com/library/archive/samplecode/Get_LAP_Connection/Get_LAP_Connection.zip) | 2003-01-14 | | [Get Tool Config](https://developer.apple.com/library/archive/samplecode/Get_Tool_Config/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000002) | [macOS](https://developer.apple.com/library/archive/samplecode/Get_Tool_Config/Get_Tool_Config.zip) | 2003-01-14 | | [GetADevType](https://developer.apple.com/library/archive/samplecode/GetADevType/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000234) | [macOS](https://developer.apple.com/library/archive/samplecode/GetADevType/GetADevType.zip) | 2003-01-14 | | [GetDragHiliteColor](https://developer.apple.com/library/archive/samplecode/GetDragHiliteColor/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000573) | [macOS](https://developer.apple.com/library/archive/samplecode/GetDragHiliteColor/GetDragHiliteColor.zip) | 2003-01-30 | | [GetEnetAddrDirect.ppc](https://developer.apple.com/library/archive/samplecode/GetEnetAddrDirect.ppc/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000235) | [macOS](https://developer.apple.com/library/archive/samplecode/GetEnetAddrDirect/GetEnetAddrDirect.ppc.zip) | 2003-07-22 | | [GetHWEthernetAddr](https://developer.apple.com/library/archive/samplecode/GetHWEthernetAddr/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000696) | [macOS](https://developer.apple.com/library/archive/samplecode/GetHWEthernetAddr/GetHWEthernetAddr.zip) | 2003-01-14 | | [GetPPPStatus](https://developer.apple.com/library/archive/samplecode/GetPPPStatus/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000236) | [macOS](https://developer.apple.com/library/archive/samplecode/GetPPPStatus/GetPPPStatus.zip) | 2003-01-14 | | [GetPrimaryMACAddress](https://developer.apple.com/library/archive/samplecode/GetPrimaryMACAddress/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000698) | [macOS](https://developer.apple.com/library/archive/samplecode/GetPrimaryMACAddress/GetPrimaryMACAddress.zip) | 2011-05-06 | | [GetSetOptions](https://developer.apple.com/library/archive/samplecode/GetSetOptions/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000699) | [macOS](https://developer.apple.com/library/archive/samplecode/GetSetOptions/GetSetOptions.zip) | 2003-01-14 | | [GetVInfo](https://developer.apple.com/library/archive/samplecode/GetVInfo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000036) | [macOS](https://developer.apple.com/library/archive/samplecode/GetVInfo/GetVInfo.zip) | 2003-01-14 | | [GetZoneList](https://developer.apple.com/library/archive/samplecode/GetZoneList/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000237) | [macOS](https://developer.apple.com/library/archive/samplecode/GetZoneList/GetZoneList.zip) | 2003-01-14 | | [GiMeDaPalette with Sound](https://developer.apple.com/library/archive/samplecode/GiMeDaPalette_with_Sound/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000364) | [macOS](https://developer.apple.com/library/archive/samplecode/GiMeDaPalette_with_Sound/GiMeDaPalette_with_Sound.zip) | 2003-03-12 | | [GlyphaIVOld](https://developer.apple.com/library/archive/samplecode/GlyphaIVOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000053) | [macOS](https://developer.apple.com/library/archive/samplecode/GlyphaIVOld/GlyphaIVOld.zip) | 2003-10-14 | | [Goodbye World](https://developer.apple.com/library/archive/samplecode/GoodbyeWorld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003695) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/GoodbyeWorld/GoodbyeWorld.zip) | 2007-06-28 | | [GrabBag](https://developer.apple.com/library/archive/samplecode/GrabBag/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000574) | [macOS](https://developer.apple.com/library/archive/samplecode/GrabBag/GrabBag.zip) | 2003-07-29 | | [Gradients](https://developer.apple.com/library/archive/samplecode/Gradients/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009026) | [macOS](https://developer.apple.com/library/archive/samplecode/Gradients/Gradients.zip) | 2011-04-15 | | [Grady](https://developer.apple.com/library/archive/samplecode/Grady/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004135) | [macOS](https://developer.apple.com/library/archive/samplecode/Grady/Grady.zip) | 2012-03-21 | | [Graphic Import-Export](https://developer.apple.com/library/archive/samplecode/Graphic_Import-Export/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001037) | [macOS](https://developer.apple.com/library/archive/samplecode/Graphic_Import-Export/Graphic_Import-Export.zip) | 2003-01-14 | | [GrayText](https://developer.apple.com/library/archive/samplecode/GrayText/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000290) | [macOS](https://developer.apple.com/library/archive/samplecode/GrayText/GrayText.zip) | 2003-01-14 | | [GrayishOutline](https://developer.apple.com/library/archive/samplecode/GrayishOutline/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000084) | [macOS](https://developer.apple.com/library/archive/samplecode/GrayishOutline/GrayishOutline.zip) | 2003-07-22 | | [GreyscaleEffectSample](https://developer.apple.com/library/archive/samplecode/GreyscaleEffectSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000828) | [macOS](https://developer.apple.com/library/archive/samplecode/GreyscaleEffectSample/GreyscaleEffectSample.zip) | 2003-02-25 | | [GridCalendar](https://developer.apple.com/library/archive/samplecode/GridCalendar/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003624) | [macOS](https://developer.apple.com/library/archive/samplecode/GridCalendar/GridCalendar.zip) | 2005-06-01 | | [GridMenu](https://developer.apple.com/library/archive/samplecode/GridMenu/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010559) | [macOS](https://developer.apple.com/library/archive/samplecode/GridMenu/GridMenu.zip) | 2012-05-16 | | [GridWindowGrow](https://developer.apple.com/library/archive/samplecode/GridWindowGrow/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000575) | [macOS](https://developer.apple.com/library/archive/samplecode/GridWindowGrow/GridWindowGrow.zip) | 2003-01-30 | | [Group Dumper](https://developer.apple.com/library/archive/samplecode/Group_Dumper/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000109) | [macOS](https://developer.apple.com/library/archive/samplecode/Group_Dumper/Group_Dumper.zip) | 2003-01-14 | | [GroupDrawing](https://developer.apple.com/library/archive/samplecode/GroupDrawing/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000949) | [macOS](https://developer.apple.com/library/archive/samplecode/GroupDrawing/GroupDrawing.zip) | 2003-01-14 | | [HALExamples](https://developer.apple.com/library/archive/samplecode/HALExamples/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008654) | [macOS](https://developer.apple.com/library/archive/samplecode/HALExamples/HALExamples.zip) | 2009-04-15 | | [HICustomLeftRightSwitch](https://developer.apple.com/library/archive/samplecode/HICustomLeftRightSwitch/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000635) | [macOS](https://developer.apple.com/library/archive/samplecode/HICustomLeftRightSwitch/HICustomLeftRightSwitch.zip) | 2003-02-06 | | [HICustomPushButton](https://developer.apple.com/library/archive/samplecode/HICustomPushButton/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000636) | [macOS](https://developer.apple.com/library/archive/samplecode/HICustomPushButton/HICustomPushButton.zip) | 2005-10-17 | | [HID Calibrator](https://developer.apple.com/library/archive/samplecode/HID_Calibrator/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007645) | [macOS](https://developer.apple.com/library/archive/samplecode/HID_Calibrator/HID_Calibrator.zip) | 2014-02-17 | | [HID Config Save](https://developer.apple.com/library/archive/samplecode/HID_Config_Save/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000442) | [macOS](https://developer.apple.com/library/archive/samplecode/HID_Config_Save/HID_Config_Save.zip) | 2014-02-28 | | [HID Dumper](https://developer.apple.com/library/archive/samplecode/HID_Dumper/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008869) | [macOS](https://developer.apple.com/library/archive/samplecode/HID_Dumper/HID_Dumper.zip) | 2013-06-06 | | [HID Explorer](https://developer.apple.com/library/archive/samplecode/HID_Explorer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000443) | [macOS](https://developer.apple.com/library/archive/samplecode/HID_Explorer/HID_Explorer.zip) | 2008-05-07 | | [HID LED test tool](https://developer.apple.com/library/archive/samplecode/HID_LED_test_tool/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007878) | [macOS](https://developer.apple.com/library/archive/samplecode/HID_LED_test_tool/HID_LED_test_tool.zip) | 2015-01-26 | | [HID Manager Basics](https://developer.apple.com/library/archive/samplecode/HID_Manager_Basics/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000444) | [macOS](https://developer.apple.com/library/archive/samplecode/HID_Manager_Basics/HID_Manager_Basics.zip) | 2003-07-10 | | [HID Utilities](https://developer.apple.com/library/archive/samplecode/HID_Utilities/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003141) | [macOS](https://developer.apple.com/library/archive/samplecode/HID_Utilities/HID_Utilities.zip) | 2009-10-01 | | [HID Utilities Source](https://developer.apple.com/library/archive/samplecode/HID_Utilities_Source/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000445) | [macOS](https://developer.apple.com/library/archive/samplecode/HID_Utilities_Source/HID_Utilities_Source.zip) | 2003-10-06 | | [HIDoubleSlider](https://developer.apple.com/library/archive/samplecode/HIDoubleSlider/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000637) | [macOS](https://developer.apple.com/library/archive/samplecode/HIDoubleSlider/HIDoubleSlider.zip) | 2003-10-27 | | [HIEmbedder](https://developer.apple.com/library/archive/samplecode/HIEmbedder/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003162) | [macOS](https://developer.apple.com/library/archive/samplecode/HIEmbedder/HIEmbedder.zip) | 2003-11-13 | | [HIFleetingControls](https://developer.apple.com/library/archive/samplecode/HIFleetingControls/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004280) | [macOS](https://developer.apple.com/library/archive/samplecode/HIFleetingControls/HIFleetingControls.zip) | 2007-05-08 | | [HIFramework](https://developer.apple.com/library/archive/samplecode/HIFramework/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000638) | [macOS](https://developer.apple.com/library/archive/samplecode/HIFramework/HIFramework.zip) | 2003-02-06 | | [HIObjectThreadController](https://developer.apple.com/library/archive/samplecode/HIObjectThreadController/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003342) | [macOS](https://developer.apple.com/library/archive/samplecode/HIObjectThreadController/HIObjectThreadController.zip) | 2005-08-10 | | [HIScrollingTextBox](https://developer.apple.com/library/archive/samplecode/HIScrollingTextBox/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003163) | [macOS](https://developer.apple.com/library/archive/samplecode/HIScrollingTextBox/HIScrollingTextBox.zip) | 2003-11-06 | | [HISimpleList](https://developer.apple.com/library/archive/samplecode/HISimpleList/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000639) | [macOS](https://developer.apple.com/library/archive/samplecode/HISimpleList/HISimpleList.zip) | 2006-03-03 | | [HITextShowcase](https://developer.apple.com/library/archive/samplecode/HITextShowcase/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000640) | [macOS](https://developer.apple.com/library/archive/samplecode/HITextShowcase/HITextShowcase.zip) | 2003-10-27 | | [HITextViewDemo](https://developer.apple.com/library/archive/samplecode/HITextViewDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003701) | [macOS](https://developer.apple.com/library/archive/samplecode/HITextViewDemo/HITextViewDemo.zip) | 2005-06-01 | | [HITextViewShowcase](https://developer.apple.com/library/archive/samplecode/HITextViewShowcase/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000641) | [macOS](https://developer.apple.com/library/archive/samplecode/HITextViewShowcase/HITextViewShowcase.zip) | 2003-10-30 | | [HIToolboxSOU-Delegates](https://developer.apple.com/library/archive/samplecode/HIToolboxSOU-Delegates/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004057) | [macOS](https://developer.apple.com/library/archive/samplecode/HIToolboxSOU-Delegates/HIToolboxSOU-Delegates.zip) | 2006-08-04 | | [HIToolboxSOU-MenuItemViews](https://developer.apple.com/library/archive/samplecode/HIToolboxSOU-MenuItemViews/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004056) | [macOS](https://developer.apple.com/library/archive/samplecode/HIToolboxSOU-MenuItemViews/HIToolboxSOU-MenuItemViews.zip) | 2006-08-04 | | [HIView-NSView](https://developer.apple.com/library/archive/samplecode/HIView-NSView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004005) | [macOS](https://developer.apple.com/library/archive/samplecode/HIView-NSView/HIView-NSView.zip) | 2007-05-29 | | [HIViewTest](https://developer.apple.com/library/archive/samplecode/HIViewTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000642) | [macOS](https://developer.apple.com/library/archive/samplecode/HIViewTest/HIViewTest.zip) | 2003-01-30 | | [HLS Catalog: Using AVFoundation to play and persist HTTP Live Streams](https://developer.apple.com/library/archive/samplecode/HLSCatalog/Introduction/Intro.html#//apple_ref/doc/uid/TP40017320) | [iOS](https://developer.apple.com/library/archive/samplecode/HLSCatalogUsingAVFoundationtoplayandpersistHTTPLiveStreams/HLSCatalogUsingAVFoundationtoplayandpersistHTTPLiveStreams.zip) | 2017-10-30 | | [HTML Editing Toolbar](https://developer.apple.com/library/archive/samplecode/FancyEditingToolbar/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004383) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/FancyEditingToolbar/FancyEditingToolbar.zip) | 2007-06-11 | | [HTML Video Example](https://developer.apple.com/library/archive/samplecode/HTML_video_example/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007723) | [Safari](https://developer.apple.com/library/archive/samplecode/HTML_video_example/HTML_video_example.zip) | 2008-06-02 | | [HTML5VideoEventFlow](https://developer.apple.com/library/archive/samplecode/HTML5VideoEventFlow/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010085) | [Safari\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/HTML5VideoEventFlow/HTML5VideoEventFlow.zip) | 2010-11-18 | | [HTML5VideoOverlays](https://developer.apple.com/library/archive/samplecode/HTML5VideoOverlays/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010109) | [Safari\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/HTML5VideoOverlays/HTML5VideoOverlays.zip) | 2010-06-23 | | [HTMLSample](https://developer.apple.com/library/archive/samplecode/HTMLSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000579) | [macOS](https://developer.apple.com/library/archive/samplecode/HTMLSample/HTMLSample.zip) | 2003-01-30 | | [HTMLUserPane](https://developer.apple.com/library/archive/samplecode/HTMLUserPane/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000580) | [macOS](https://developer.apple.com/library/archive/samplecode/HTMLUserPane/HTMLUserPane.zip) | 2003-01-30 | | [Hack TV](https://developer.apple.com/library/archive/samplecode/Hack_TV/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000323) | [macOS](https://developer.apple.com/library/archive/samplecode/Hack_TV/Hack_TV.zip) | 2003-01-14 | | [HackTV Carbon](https://developer.apple.com/library/archive/samplecode/HackTVCarbon/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003208) | [macOS](https://developer.apple.com/library/archive/samplecode/HackTVCarbon/HackTVCarbon.zip) | 2007-11-16 | | [HairLines](https://developer.apple.com/library/archive/samplecode/HairLines/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000292) | [macOS](https://developer.apple.com/library/archive/samplecode/HairLines/HairLines.zip) | 2003-01-14 | | [Handling Touches Using Responder Methods and Gesture Recognizers](https://developer.apple.com/library/archive/samplecode/Touches/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007435) | [iOS](https://developer.apple.com/library/archive/samplecode/Touches/Touches.zip) | 2013-05-13 | | [HandyScrollingSample](https://developer.apple.com/library/archive/samplecode/HandyScrollingSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000576) | [macOS](https://developer.apple.com/library/archive/samplecode/HandyScrollingSample/HandyScrollingSample.zip) | 2003-01-30 | | [HazardMap](https://developer.apple.com/library/archive/samplecode/HazardMap/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010049) | [iOS](https://developer.apple.com/library/archive/samplecode/HazardMap/HazardMap.zip) | 2014-01-13 | | [HeaderFooter](https://developer.apple.com/library/archive/samplecode/HeaderFooter/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007989) | [iOS](https://developer.apple.com/library/archive/samplecode/HeaderFooter/HeaderFooter.zip) | 2010-06-29 | | [HeadsUpUI](https://developer.apple.com/library/archive/samplecode/HeadsUpUI/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007998) | [iOS](https://developer.apple.com/library/archive/samplecode/HeadsUpUI/HeadsUpUI.zip) | 2013-05-16 | | [HeightArray](https://developer.apple.com/library/archive/samplecode/HeightArray/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010103) | [macOS](https://developer.apple.com/library/archive/samplecode/HeightArray/HeightArray.zip) | 2014-06-17 | | [Hello Metronome](https://developer.apple.com/library/archive/samplecode/HelloMetronome/Introduction/Intro.html#//apple_ref/doc/uid/TP40017587) | [watchOS\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/HelloMetronome/HelloMetronome.zip) | 2017-02-24 | | [Hello Welt](https://developer.apple.com/library/archive/samplecode/HelloWelt/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003696) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/HelloWelt/HelloWelt.zip) | 2007-06-25 | | [Hello World](https://developer.apple.com/library/archive/samplecode/HelloWorld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003697) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/HelloWorld/HelloWorld.zip) | 2005-06-01 | | [HelloGameKit: A skeleton app for turn based games on watchOS](https://developer.apple.com/library/archive/samplecode/HelloGameKit/Introduction/Intro.html#//apple_ref/doc/uid/TP40017337) | [watchOS](https://developer.apple.com/library/archive/samplecode/HelloGameKitAskeletonappforturnbasedgamesonwatchOS/HelloGameKitAskeletonappforturnbasedgamesonwatchOS.zip) | 2016-10-27 | | [HelloGoodbye: Using the Accessibility API to Widen Your User Base](https://developer.apple.com/library/archive/samplecode/HelloGoodbye/Introduction/Intro.html#//apple_ref/doc/uid/TP40014593) | [iOS](https://developer.apple.com/library/archive/samplecode/HelloGoodbyeUsingtheAccessibilityAPItoWidenYourUserBase/HelloGoodbyeUsingtheAccessibilityAPItoWidenYourUserBase.zip) | 2014-09-17 | | [HelloStudio](https://developer.apple.com/library/archive/samplecode/HelloStudio/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004014) | [macOS](https://developer.apple.com/library/archive/samplecode/HelloStudio/HelloStudio.zip) | 2006-07-28 | | [HexEditorView](https://developer.apple.com/library/archive/samplecode/HexEditorView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000634) | [macOS](https://developer.apple.com/library/archive/samplecode/HexEditorView/HexEditorView.zip) | 2003-01-30 | | [Hide Images Safari Extension](https://developer.apple.com/library/archive/samplecode/HideImagesSafariExtension/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010157) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/HideImagesSafariExtension/HideImagesSafariExtension.zip) | 2010-06-24 | | [HideMenuBar](https://developer.apple.com/library/archive/samplecode/HideMenuBar/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000577) | [macOS](https://developer.apple.com/library/archive/samplecode/HideMenuBar/HideMenuBar.zip) | 2003-01-30 | | [HomeKit Catalog: Creating Homes, Pairing and Controlling Accessories, and Setting Up Triggers](https://developer.apple.com/library/archive/samplecode/HomeKitCatalog/Introduction/Intro.html#//apple_ref/doc/uid/TP40015048) | [iOS](https://developer.apple.com/library/archive/samplecode/HomeKitCatalogCreatingHomesPairingandControllingAccessoriesandSettingUpTriggers/HomeKitCatalogCreatingHomesPairingandControllingAccessoriesandSettingUpTriggers.zip) | 2016-09-13 | | [HoverTableDemo](https://developer.apple.com/library/archive/samplecode/HoverTableDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011082) | [macOS](https://developer.apple.com/library/archive/samplecode/HoverTableDemo/HoverTableDemo.zip) | 2012-10-04 | | [How to Detect a CD](https://developer.apple.com/library/archive/samplecode/How_to_Detect_a_CD/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000012) | [macOS](https://developer.apple.com/library/archive/samplecode/How_to_Detect_a_CD/How_to_Detect_a_CD.zip) | 2003-01-14 | | [Http Server](https://developer.apple.com/library/archive/samplecode/Http_Server/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000238) | [macOS](https://developer.apple.com/library/archive/samplecode/Http_Server/Http_Server.zip) | 2003-01-14 | | [IBFragmentView](https://developer.apple.com/library/archive/samplecode/IBFragmentVIew/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004011) | [Xcode Developer Tools\|macOS](https://developer.apple.com/library/archive/samplecode/IBFragmentVIew/IBFragmentVIew.zip) | 2006-08-01 | | [ICADownloadFirst](https://developer.apple.com/library/archive/samplecode/ICADownloadFirst/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000653) | [macOS](https://developer.apple.com/library/archive/samplecode/ICADownloadFirst/ICADownloadFirst.zip) | 2003-01-14 | | [ICAObjectDumper](https://developer.apple.com/library/archive/samplecode/ICAObjectDumper/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000654) | [macOS](https://developer.apple.com/library/archive/samplecode/ICAObjectDumper/ICAObjectDumper.zip) | 2003-01-14 | | [IKImageViewDemo](https://developer.apple.com/library/archive/samplecode/IKImageViewDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004049) | [macOS](https://developer.apple.com/library/archive/samplecode/IKImageViewDemo/IKImageViewDemo.zip) | 2013-08-13 | | [IKSlideshowDemo](https://developer.apple.com/library/archive/samplecode/IKSlideshowDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004050) | [macOS](https://developer.apple.com/library/archive/samplecode/IKSlideshowDemo/IKSlideshowDemo.zip) | 2012-08-31 | | [INIT - CDEV](https://developer.apple.com/library/archive/samplecode/INIT_-_CDEV/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000187) | [macOS](https://developer.apple.com/library/archive/samplecode/INIT_-_CDEV/INIT_-_CDEV.zip) | 2003-01-14 | | [IOKitWithLibrary](https://developer.apple.com/library/archive/samplecode/IOKitWithLibrary/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000446) | [macOS](https://developer.apple.com/library/archive/samplecode/IOKitWithLibrary/IOKitWithLibrary.zip) | 2003-08-27 | | [IOPrintSuperClasses](https://developer.apple.com/library/archive/samplecode/IOPrintSuperClasses/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000447) | [macOS](https://developer.apple.com/library/archive/samplecode/IOPrintSuperClasses/IOPrintSuperClasses.zip) | 2005-08-17 | | [IPCLister](https://developer.apple.com/library/archive/samplecode/IPCLister/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000208) | [macOS](https://developer.apple.com/library/archive/samplecode/IPCLister/IPCLister.zip) | 2003-03-14 | | [IRCServicePlugIn](https://developer.apple.com/library/archive/samplecode/IRCServicePlugIn/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011125) | [macOS](https://developer.apple.com/library/archive/samplecode/IRCServicePlugIn/IRCServicePlugIn.zip) | 2011-06-08 | | [ISp SampleOld](https://developer.apple.com/library/archive/samplecode/ISp_SampleOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000056) | [macOS](https://developer.apple.com/library/archive/samplecode/ISp_SampleOld/ISp_SampleOld.zip) | 2003-10-14 | | [IW-Half-Dither](https://developer.apple.com/library/archive/samplecode/IW-Half-Dither/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000151) | [macOS](https://developer.apple.com/library/archive/samplecode/IW-Half-Dither/IW-Half-Dither.zip) | 2003-01-14 | | [Ice Cream Builder: A simple Messages app extension](https://developer.apple.com/library/archive/samplecode/IceCreamBuilder/Introduction/Intro.html#//apple_ref/doc/uid/TP40017329) | [iOS](https://developer.apple.com/library/archive/samplecode/IceCreamBuilderAsimpleMessagesappextension/IceCreamBuilderAsimpleMessagesappextension.zip) | 2017-03-27 | | [Icon Display](https://developer.apple.com/library/archive/samplecode/Icon_Display/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000085) | [macOS](https://developer.apple.com/library/archive/samplecode/Icon_Display/Icon_Display.zip) | 2003-07-22 | | [Icon Play](https://developer.apple.com/library/archive/samplecode/Icon_Play/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000582) | [macOS](https://developer.apple.com/library/archive/samplecode/Icon_Play/Icon_Play.zip) | 2003-01-30 | | [IconCollection](https://developer.apple.com/library/archive/samplecode/IconCollection/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004477) | [macOS](https://developer.apple.com/library/archive/samplecode/IconCollection/IconCollection.zip) | 2016-05-23 | | [IconDimming](https://developer.apple.com/library/archive/samplecode/IconDimming/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000086) | [macOS](https://developer.apple.com/library/archive/samplecode/IconDimming/IconDimming.zip) | 2003-07-22 | | [IconUtilCheck](https://developer.apple.com/library/archive/samplecode/IconUtilCheck/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000583) | [macOS](https://developer.apple.com/library/archive/samplecode/IconUtilCheck/IconUtilCheck.zip) | 2003-01-30 | | [IdentitySample](https://developer.apple.com/library/archive/samplecode/IdentitySample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003978) | [macOS](https://developer.apple.com/library/archive/samplecode/IdentitySample/IdentitySample.zip) | 2011-05-26 | | [Image Difference](https://developer.apple.com/library/archive/samplecode/Image_Difference/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000499) | [macOS](https://developer.apple.com/library/archive/samplecode/Image_Difference/Image_Difference.zip) | 2003-01-30 | | [ImageApp](https://developer.apple.com/library/archive/samplecode/ImageApp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003685) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageApp/ImageApp.zip) | 2012-06-20 | | [ImageBrowser: Using IKImageBrowserView to display images](https://developer.apple.com/library/archive/samplecode/ImageBrowser/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003997) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageBrowserUsingIKImageBrowserViewtodisplayimages/ImageBrowserUsingIKImageBrowserViewtodisplayimages.zip) | 2018-05-03 | | [ImageBrowserView](https://developer.apple.com/library/archive/samplecode/ImageBrowserView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003674) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageBrowserView/ImageBrowserView.zip) | 2005-06-01 | | [ImageBrowserViewAppearance: Customizing IKImageBrowserView](https://developer.apple.com/library/archive/samplecode/ImageBrowserViewAppearance/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009013) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageBrowserViewAppearanceCustomizingIKImageBrowserView/ImageBrowserViewAppearanceCustomizingIKImageBrowserView.zip) | 2018-05-03 | | [ImageClient](https://developer.apple.com/library/archive/samplecode/ImageClient/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003661) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageClient/ImageClient.zip) | 2005-06-01 | | [ImageCompositing](https://developer.apple.com/library/archive/samplecode/ImageCompositing/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000951) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageCompositing/ImageCompositing.zip) | 2003-01-14 | | [ImageFile](https://developer.apple.com/library/archive/samplecode/ImageFile/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000953) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageFile/ImageFile.zip) | 2006-06-28 | | [ImageKit with Core Data](https://developer.apple.com/library/archive/samplecode/IKImageBrowserViewWithCoreData/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007876) | [macOS](https://developer.apple.com/library/archive/samplecode/IKImageBrowserViewWithCoreData/IKImageBrowserViewWithCoreData.zip) | 2008-07-25 | | [ImageKitDemo](https://developer.apple.com/library/archive/samplecode/ImageKitDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004371) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageKitDemo/ImageKitDemo.zip) | 2009-06-05 | | [ImageMap](https://developer.apple.com/library/archive/samplecode/ImageMap/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009015) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageMap/ImageMap.zip) | 2009-06-29 | | [ImageMapExample](https://developer.apple.com/library/archive/samplecode/ImageMapExample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003592) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageMapExample/ImageMapExample.zip) | 2011-09-09 | | [ImageMapView](https://developer.apple.com/library/archive/samplecode/ImageMapView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003646) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageMapView/ImageMapView.zip) | 2005-10-17 | | [ImagePicker](https://developer.apple.com/library/archive/samplecode/ImagePicker/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003996) | [macOS](https://developer.apple.com/library/archive/samplecode/ImagePicker/ImagePicker.zip) | 2006-07-25 | | [ImageProducing](https://developer.apple.com/library/archive/samplecode/ImageProducing/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000955) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageProducing/ImageProducing.zip) | 2006-05-05 | | [ImageTransition](https://developer.apple.com/library/archive/samplecode/ImageTransition/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010277) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageTransition/ImageTransition.zip) | 2011-07-01 | | [ImageWriter bug](https://developer.apple.com/library/archive/samplecode/ImageWriter_bug/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000293) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageWriter_bug/ImageWriter_bug.zip) | 2003-01-14 | | [Imageer](https://developer.apple.com/library/archive/samplecode/Imageer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000150) | [macOS](https://developer.apple.com/library/archive/samplecode/Imageer/Imageer.zip) | 2003-01-14 | | [ImagesToQTMovie](https://developer.apple.com/library/archive/samplecode/ImagesToQTMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000655) | [macOS](https://developer.apple.com/library/archive/samplecode/ImagesToQTMovie/ImagesToQTMovie.zip) | 2003-01-14 | | [ImportExport](https://developer.apple.com/library/archive/samplecode/ImportExport/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000957) | [macOS](https://developer.apple.com/library/archive/samplecode/ImportExport/ImportExport.zip) | 2006-05-11 | | [ImportExportMovie](https://developer.apple.com/library/archive/samplecode/ImportExportMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000891) | [macOS](https://developer.apple.com/library/archive/samplecode/ImportExportMovie/ImportExportMovie.zip) | 2003-01-14 | | [ImproveYourImage](https://developer.apple.com/library/archive/samplecode/ImproveYourImage/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000766) | [macOS](https://developer.apple.com/library/archive/samplecode/ImproveYourImage/ImproveYourImage.zip) | 2005-08-24 | | [InfoBarStackView: Demonstrates how to use NSStackView](https://developer.apple.com/library/archive/samplecode/InfoBarStackView/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013589) | [macOS](https://developer.apple.com/library/archive/samplecode/InfoBarStackViewDemonstrateshowtouseNSStackView/InfoBarStackViewDemonstrateshowtouseNSStackView.zip) | 2017-03-16 | | [InkSample](https://developer.apple.com/library/archive/samplecode/InkSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001093) | [macOS](https://developer.apple.com/library/archive/samplecode/InkSample/InkSample.zip) | 2003-10-27 | | [Inline Input for TextEdit](https://developer.apple.com/library/archive/samplecode/Inline_Input_for_TextEdit/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001094) | [macOS](https://developer.apple.com/library/archive/samplecode/Inline_Input_for_TextEdit/Inline_Input_for_TextEdit.zip) | 2003-01-14 | | [InputSprocketPPTest](https://developer.apple.com/library/archive/samplecode/InputSprocketPPTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000054) | [macOS](https://developer.apple.com/library/archive/samplecode/InputSprocketPPTest/InputSprocketPPTest.zip) | 2003-01-14 | | [InputSprocketTestOld](https://developer.apple.com/library/archive/samplecode/InputSprocketTestOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000055) | [macOS](https://developer.apple.com/library/archive/samplecode/InputSprocketTestOld/InputSprocketTestOld.zip) | 2003-10-14 | | [Inside Mac ICM Code](https://developer.apple.com/library/archive/samplecode/Inside_Mac_ICM_Code/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000892) | [macOS](https://developer.apple.com/library/archive/samplecode/Inside_Mac_ICM_Code/Inside_Mac_ICM_Code.zip) | 2003-01-14 | | [Inside Mac Movie TB Code](https://developer.apple.com/library/archive/samplecode/Inside_Mac_Movie_TB_Code/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000767) | [macOS](https://developer.apple.com/library/archive/samplecode/Inside_Mac_Movie_TB_Code/Inside_Mac_Movie_TB_Code.zip) | 2003-01-14 | | [Installer Tiger Examples](https://developer.apple.com/library/archive/samplecode/InstallerDists2/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003716) | [macOS](https://developer.apple.com/library/archive/samplecode/InstallerDists2/InstallerDists2.zip) | 2005-06-01 | | [InstallerPluginSample](https://developer.apple.com/library/archive/samplecode/InstallerPluginSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003945) | [Xcode Developer Tools\|macOS](https://developer.apple.com/library/archive/samplecode/InstallerPluginSample/InstallerPluginSample.zip) | 2006-08-30 | | [InstancedArrays](https://developer.apple.com/library/archive/samplecode/InstancedArrays/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010090) | [macOS](https://developer.apple.com/library/archive/samplecode/InstancedArrays/InstancedArrays.zip) | 2013-08-22 | | [IntentHandling: Using the Intents framework to handle custom Siri request](https://developer.apple.com/library/archive/samplecode/IntentHandling/Introduction/Intro.html#//apple_ref/doc/uid/TP40017335) | [iOS](https://developer.apple.com/library/archive/samplecode/IntentHandlingUsingtheIntentsframeworktohandlecustomSirirequest/IntentHandlingUsingtheIntentsframeworktohandlecustomSirirequest.zip) | 2016-09-13 | | [Inter-App Audio Examples](https://developer.apple.com/library/archive/samplecode/InterAppAudioSuite/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013418) | [iOS](https://developer.apple.com/library/archive/samplecode/InterAppAudioSuite/InterAppAudioSuite.zip) | 2014-03-24 | | [Interactive Content with ARKit](https://developer.apple.com/library/archive/samplecode/InteractiveContent/Introduction/Intro.html#//apple_ref/doc/uid/TP40017667) | [iOS](https://developer.apple.com/library/archive/samplecode/InteractiveContentwithARKit/InteractiveContentwithARKit.zip) | 2018-02-15 | | [Internationalization and Localization for OS X](https://developer.apple.com/library/archive/samplecode/Mountains/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007727) | [macOS](https://developer.apple.com/library/archive/samplecode/Mountains/Mountains.zip) | 2013-04-11 | | [Internationalization and Localization for iOS](https://developer.apple.com/library/archive/samplecode/InternationalMountains/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008756) | [watchOS\|iOS](https://developer.apple.com/library/archive/samplecode/InternationalMountains/InternationalMountains.zip) | 2014-07-18 | | [InvertedText](https://developer.apple.com/library/archive/samplecode/InvertedText/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000294) | [macOS](https://developer.apple.com/library/archive/samplecode/InvertedText/InvertedText.zip) | 2003-01-14 | | [Is PC Exchange Installed](https://developer.apple.com/library/archive/samplecode/Is_PC_Exchange_Installed/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000037) | [macOS](https://developer.apple.com/library/archive/samplecode/Is_PC_Exchange_Installed/Is_PC_Exchange_Installed.zip) | 2003-01-23 | | [ItemHider](https://developer.apple.com/library/archive/samplecode/ItemHider/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000585) | [macOS](https://developer.apple.com/library/archive/samplecode/ItemHider/ItemHider.zip) | 2003-01-30 | | [JAWTExample](https://developer.apple.com/library/archive/samplecode/JAWTExample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000683) | [Java\|macOS](https://developer.apple.com/library/archive/samplecode/JAWTExample/JAWTExample.zip) | 2011-03-09 | | [JDirect Mouse](https://developer.apple.com/library/archive/samplecode/JDirect_Mouse/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000217) | [macOS](https://developer.apple.com/library/archive/samplecode/JDirect_Mouse/JDirect_Mouse.zip) | 2003-07-22 | | [JDirectTalker Example](https://developer.apple.com/library/archive/samplecode/JDirectTalker_Example/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000218) | [macOS](https://developer.apple.com/library/archive/samplecode/JDirectTalker_Example/JDirectTalker_Example.zip) | 2003-07-22 | | [JDragNDrop](https://developer.apple.com/library/archive/samplecode/JDragNDrop/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000392) | [macOS](https://developer.apple.com/library/archive/samplecode/JDragNDrop/JDragNDrop.zip) | 2003-01-14 | | [JISApplet](https://developer.apple.com/library/archive/samplecode/JISApplet/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000961) | [macOS](https://developer.apple.com/library/archive/samplecode/JISApplet/JISApplet.zip) | 2003-01-14 | | [JNISample](https://developer.apple.com/library/archive/samplecode/JNISample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000684) | [macOS](https://developer.apple.com/library/archive/samplecode/JNISample/JNISample.zip) | 2003-01-14 | | [JPEG File Interchange Format](https://developer.apple.com/library/archive/samplecode/JPEG_File_Interchange_Format/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000845) | [macOS](https://developer.apple.com/library/archive/samplecode/JPEG_File_Interchange_Format/JPEG_File_Interchange_Format.zip) | 2003-01-14 | | [JPEG Sample](https://developer.apple.com/library/archive/samplecode/JPEG_Sample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000324) | [macOS](https://developer.apple.com/library/archive/samplecode/JPEG_Sample/JPEG_Sample.zip) | 2003-01-14 | | [JSInterpreter](https://developer.apple.com/library/archive/samplecode/JSInterpreter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004361) | [macOS](https://developer.apple.com/library/archive/samplecode/JSInterpreter/JSInterpreter.zip) | 2007-06-06 | | [JSPong](https://developer.apple.com/library/archive/samplecode/JSPong/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004362) | [macOS](https://developer.apple.com/library/archive/samplecode/JSPong/JSPong.zip) | 2007-06-06 | | [JSaver](https://developer.apple.com/library/archive/samplecode/JSaver/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000219) | [macOS](https://developer.apple.com/library/archive/samplecode/JSaver/JSaver.zip) | 2003-01-14 | | [JScriptApplet](https://developer.apple.com/library/archive/samplecode/JScriptApplet/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000962) | [macOS](https://developer.apple.com/library/archive/samplecode/JScriptApplet/JScriptApplet.zip) | 2003-01-14 | | [JSheets](https://developer.apple.com/library/archive/samplecode/JSheets/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003595) | [macOS](https://developer.apple.com/library/archive/samplecode/JSheets/JSheets.zip) | 2006-07-11 | | [Java Drawing](https://developer.apple.com/library/archive/samplecode/Java_Drawing/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000959) | [macOS](https://developer.apple.com/library/archive/samplecode/Java_Drawing/Java_Drawing.zip) | 2003-01-14 | | [JavaEOGenerator](https://developer.apple.com/library/archive/samplecode/JavaEOGenerator/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004471) | [macOS](https://developer.apple.com/library/archive/samplecode/JavaEOGenerator/JavaEOGenerator.zip) | 2007-11-14 | | [JavaFrameEmbedding example](https://developer.apple.com/library/archive/samplecode/JavaFrameEmbeddingDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004381) | [macOS](https://developer.apple.com/library/archive/samplecode/JavaFrameEmbeddingDemo/JavaFrameEmbeddingDemo.zip) | 2007-06-12 | | [JavaScriptCoreHeadstart](https://developer.apple.com/library/archive/samplecode/JavaScriptCoreHeadstart/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004553) | [macOS](https://developer.apple.com/library/archive/samplecode/JavaScriptCoreHeadstart/JavaScriptCoreHeadstart.zip) | 2011-08-03 | | [JavaSplashScreen](https://developer.apple.com/library/archive/samplecode/JavaSplashScreen/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000682) | [macOS](https://developer.apple.com/library/archive/samplecode/JavaSplashScreen/JavaSplashScreen.zip) | 2006-04-12 | | [JavaSprites](https://developer.apple.com/library/archive/samplecode/JavaSprites/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000960) | [macOS](https://developer.apple.com/library/archive/samplecode/JavaSprites/JavaSprites.zip) | 2003-01-14 | | [Just Finder](https://developer.apple.com/library/archive/samplecode/Just_Finder/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000309) | [macOS](https://developer.apple.com/library/archive/samplecode/Just_Finder/Just_Finder.zip) | 2003-10-30 | | [JustDraw](https://developer.apple.com/library/archive/samplecode/JustDraw/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003600) | [macOS](https://developer.apple.com/library/archive/samplecode/JustDraw/JustDraw.zip) | 2005-06-01 | | [KMLViewer](https://developer.apple.com/library/archive/samplecode/KMLViewer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010046) | [iOS](https://developer.apple.com/library/archive/samplecode/KMLViewer/KMLViewer.zip) | 2015-09-24 | | [KauthORama](https://developer.apple.com/library/archive/samplecode/KauthORama/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003633) | [macOS](https://developer.apple.com/library/archive/samplecode/KauthORama/KauthORama.zip) | 2014-03-26 | | [Kerberos GSS](https://developer.apple.com/library/archive/samplecode/KerberosGSS/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007740) | [macOS](https://developer.apple.com/library/archive/samplecode/KerberosGSS/KerberosGSS.zip) | 2008-06-04 | | [KeyMapTest](https://developer.apple.com/library/archive/samplecode/KeyMapTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000587) | [macOS](https://developer.apple.com/library/archive/samplecode/KeyMapTest/KeyMapTest.zip) | 2003-01-30 | | [KeyboardAccessory](https://developer.apple.com/library/archive/samplecode/KeyboardAccessory/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009462) | [iOS](https://developer.apple.com/library/archive/samplecode/KeyboardAccessory/KeyboardAccessory.zip) | 2014-04-03 | | [KeyboardController](https://developer.apple.com/library/archive/samplecode/KeyboardController/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000963) | [macOS](https://developer.apple.com/library/archive/samplecode/KeyboardController/KeyboardController.zip) | 2006-05-11 | | [KeychainTouchID: Using Touch ID with Keychain and LocalAuthentication](https://developer.apple.com/library/archive/samplecode/KeychainTouchID/Introduction/Intro.html#//apple_ref/doc/uid/TP40014530) | [iOS](https://developer.apple.com/library/archive/samplecode/KeychainTouchIDUsingTouchIDwithKeychainandLocalAuthentication/KeychainTouchIDUsingTouchIDwithKeychainandLocalAuthentication.zip) | 2018-06-04 | | [Keyword Search Safari Extension](https://developer.apple.com/library/archive/samplecode/KeywordSearchSafariExtension/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012648) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/KeywordSearchSafariExtension/KeywordSearchSafariExtension.zip) | 2012-06-10 | | [KillEveryOneButMe](https://developer.apple.com/library/archive/samplecode/KillEveryOneButMe/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000748) | [macOS](https://developer.apple.com/library/archive/samplecode/KillEveryOneButMe/KillEveryOneButMe.zip) | 2005-08-24 | | [LSMSmartCategorizer](https://developer.apple.com/library/archive/samplecode/LSMSmartCategorizer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003984) | [macOS](https://developer.apple.com/library/archive/samplecode/LSMSmartCategorizer/LSMSmartCategorizer.zip) | 2007-05-09 | | [LW8_Hosesample](https://developer.apple.com/library/archive/samplecode/LW8_Hosesample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000295) | [macOS](https://developer.apple.com/library/archive/samplecode/LW8_Hosesample/LW8_Hosesample.zip) | 2003-03-26 | | [Large Image Downsizing](https://developer.apple.com/library/archive/samplecode/LargeImageDownsizing/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011173) | [watchOS\|iOS](https://developer.apple.com/library/archive/samplecode/LargeImageDownsizing/LargeImageDownsizing.zip) | 2014-03-27 | | [LaunchMe: Using a custom URL scheme to interact with your application](https://developer.apple.com/library/archive/samplecode/LaunchMe/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007417) | [iOS](https://developer.apple.com/library/archive/samplecode/LaunchMeUsingacustomURLschemetointeractwithyourapplication/LaunchMeUsingacustomURLschemetointeractwithyourapplication.zip) | 2017-02-11 | | [LaunchWithDoc](https://developer.apple.com/library/archive/samplecode/LaunchWithDoc/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000311) | [macOS](https://developer.apple.com/library/archive/samplecode/LaunchWithDoc/LaunchWithDoc.zip) | 2003-07-22 | | [LaunchWithDoc2](https://developer.apple.com/library/archive/samplecode/LaunchWithDoc2/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000312) | [macOS](https://developer.apple.com/library/archive/samplecode/LaunchWithDoc2/LaunchWithDoc2.zip) | 2003-07-22 | | [LayerBackedOpenGLView](https://developer.apple.com/library/archive/samplecode/LayerBackedOpenGLView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004386) | [macOS](https://developer.apple.com/library/archive/samplecode/LayerBackedOpenGLView/LayerBackedOpenGLView.zip) | 2013-04-11 | | [LayoutManagerDemo](https://developer.apple.com/library/archive/samplecode/LayoutManagerDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000394) | [macOS](https://developer.apple.com/library/archive/samplecode/LayoutManagerDemo/LayoutManagerDemo.zip) | 2012-06-07 | | [LazyTableImages: Populating UITableView content asynchronously](https://developer.apple.com/library/archive/samplecode/LazyTableImages/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009394) | [iOS](https://developer.apple.com/library/archive/samplecode/LazyTableImagesPopulatingUITableViewcontentasynchronously/LazyTableImagesPopulatingUITableViewcontentasynchronously.zip) | 2017-11-30 | | [Leaves](https://developer.apple.com/library/archive/samplecode/Leaves/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007647) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/Leaves/Leaves.zip) | 2008-05-08 | | [LightTable](https://developer.apple.com/library/archive/samplecode/LightTable/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008927) | [macOS](https://developer.apple.com/library/archive/samplecode/LightTable/LightTable.zip) | 2017-08-17 | | [Link Snoop](https://developer.apple.com/library/archive/samplecode/LinkSnoop/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003593) | [macOS](https://developer.apple.com/library/archive/samplecode/LinkSnoop/LinkSnoop.zip) | 2005-06-01 | | [LinkedImageFetcher](https://developer.apple.com/library/archive/samplecode/LinkedImageFetcher/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010038) | [macOS](https://developer.apple.com/library/archive/samplecode/LinkedImageFetcher/LinkedImageFetcher.zip) | 2013-03-05 | | [ListAdder](https://developer.apple.com/library/archive/samplecode/ListAdder/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010275) | [iOS](https://developer.apple.com/library/archive/samplecode/ListAdder/ListAdder.zip) | 2014-09-30 | | [ListMania](https://developer.apple.com/library/archive/samplecode/ListMania/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000700) | [macOS](https://developer.apple.com/library/archive/samplecode/ListMania/ListMania.zip) | 2003-01-14 | | [LittleArrowsShowcase](https://developer.apple.com/library/archive/samplecode/LittleArrowsShowcase/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004126) | [macOS](https://developer.apple.com/library/archive/samplecode/LittleArrowsShowcase/LittleArrowsShowcase.zip) | 2006-11-09 | | [Live Control Scroll](https://developer.apple.com/library/archive/samplecode/Live_Control_Scroll/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000590) | [macOS](https://developer.apple.com/library/archive/samplecode/Live_Control_Scroll/Live_Control_Scroll.zip) | 2003-01-30 | | [Live Scroll](https://developer.apple.com/library/archive/samplecode/Live_Scroll/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000591) | [macOS](https://developer.apple.com/library/archive/samplecode/Live_Scroll/Live_Scroll.zip) | 2003-01-30 | | [LiveVideoMixer](https://developer.apple.com/library/archive/samplecode/LiveVideoMixer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003618) | [macOS](https://developer.apple.com/library/archive/samplecode/LiveVideoMixer/LiveVideoMixer.zip) | 2008-04-24 | | [LiveVideoMixer2](https://developer.apple.com/library/archive/samplecode/LiveVideoMixer2/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003747) | [macOS](https://developer.apple.com/library/archive/samplecode/LiveVideoMixer2/LiveVideoMixer2.zip) | 2006-05-05 | | [LiveVideoMixer3](https://developer.apple.com/library/archive/samplecode/LiveVideoMixer3/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004044) | [macOS](https://developer.apple.com/library/archive/samplecode/LiveVideoMixer3/LiveVideoMixer3.zip) | 2006-08-01 | | [Load PCI Driver](https://developer.apple.com/library/archive/samplecode/Load_PCI_Driver/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000439) | [macOS](https://developer.apple.com/library/archive/samplecode/Load_PCI_Driver/Load_PCI_Driver.zip) | 2003-01-14 | | [LocalServer](https://developer.apple.com/library/archive/samplecode/LocalServer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000701) | [macOS](https://developer.apple.com/library/archive/samplecode/LocalServer/LocalServer.zip) | 2003-01-30 | | [LocateMe](https://developer.apple.com/library/archive/samplecode/LocateMe/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007801) | [iOS](https://developer.apple.com/library/archive/samplecode/LocateMe/LocateMe.zip) | 2014-09-17 | | [Locations](https://developer.apple.com/library/archive/samplecode/Locations/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008406) | [iOS](https://developer.apple.com/library/archive/samplecode/Locations/Locations.zip) | 2010-06-29 | | [LockFile](https://developer.apple.com/library/archive/samplecode/LockFile/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000283) | [macOS](https://developer.apple.com/library/archive/samplecode/LockFile/LockFile.zip) | 2003-07-22 | | [Logging: Using the os_log APIs](https://developer.apple.com/library/archive/samplecode/Logging/Introduction/Intro.html#//apple_ref/doc/uid/TP40017510) | [iOS](https://developer.apple.com/library/archive/samplecode/LoggingUsingtheoslogAPIs/LoggingUsingtheoslogAPIs.zip) | 2016-09-13 | | [LoginItemsAE](https://developer.apple.com/library/archive/samplecode/LoginItemsAE/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003788) | [macOS](https://developer.apple.com/library/archive/samplecode/LoginItemsAE/LoginItemsAE.zip) | 2005-10-17 | | [LookInside: Presentation Controllers, Adaptivity, and Custom Animator Objects](https://developer.apple.com/library/archive/samplecode/LookInside/Introduction/Intro.html#//apple_ref/doc/uid/TP40014643) | [iOS](https://developer.apple.com/library/archive/samplecode/LookInsidePresentationControllersAdaptivityandCustomAnimatorObjects/LookInsidePresentationControllersAdaptivityandCustomAnimatorObjects.zip) | 2014-09-17 | | [LoopHealth: Using health documents and Activity rings in HealthKit and HealthKitUI](https://developer.apple.com/library/archive/samplecode/LoopHealth/Introduction/Intro.html#//apple_ref/doc/uid/TP40017553) | [watchOS\|iOS](https://developer.apple.com/library/archive/samplecode/LoopHealthUsinghealthdocumentsandActivityringsinHealthKitandHealthKitUI/LoopHealthUsinghealthdocumentsandActivityringsinHealthKitandHealthKitUI.zip) | 2016-12-02 | | [MCComponent](https://developer.apple.com/library/archive/samplecode/MCComponent/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000817) | [macOS](https://developer.apple.com/library/archive/samplecode/MCComponent/MCComponent.zip) | 2003-01-14 | | [MCPlayMovie](https://developer.apple.com/library/archive/samplecode/MCPlayMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000325) | [macOS](https://developer.apple.com/library/archive/samplecode/MCPlayMovie/MCPlayMovie.zip) | 2003-01-14 | | [MDEF.Sample](https://developer.apple.com/library/archive/samplecode/MDEF.Sample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000191) | [macOS](https://developer.apple.com/library/archive/samplecode/MDEF/MDEF.Sample.zip) | 2003-01-14 | | [MFSLives](https://developer.apple.com/library/archive/samplecode/MFSLives/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004026) | [macOS](https://developer.apple.com/library/archive/samplecode/MFSLives/MFSLives.zip) | 2006-11-09 | | [MLTE_CustomScrolling](https://developer.apple.com/library/archive/samplecode/MLTE_CustomScrolling/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003413) | [macOS](https://developer.apple.com/library/archive/samplecode/MLTE_CustomScrolling/MLTE_CustomScrolling.zip) | 2004-10-15 | | [MP3 Player](https://developer.apple.com/library/archive/samplecode/MP3_Player/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000397) | [macOS](https://developer.apple.com/library/archive/samplecode/MP3_Player/MP3_Player.zip) | 2003-01-14 | | [MP3Player](https://developer.apple.com/library/archive/samplecode/MP3Player/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000365) | [macOS](https://developer.apple.com/library/archive/samplecode/MP3Player/MP3Player.zip) | 2003-01-14 | | [MPDelayUntilTest](https://developer.apple.com/library/archive/samplecode/MPDelayUntilTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000749) | [macOS](https://developer.apple.com/library/archive/samplecode/MPDelayUntilTest/MPDelayUntilTest.zip) | 2003-10-27 | | [MPFileCopy](https://developer.apple.com/library/archive/samplecode/MPFileCopy/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000475) | [macOS](https://developer.apple.com/library/archive/samplecode/MPFileCopy/MPFileCopy.zip) | 2003-01-14 | | [MPPeriodicalTest](https://developer.apple.com/library/archive/samplecode/MPPeriodicalTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000750) | [macOS](https://developer.apple.com/library/archive/samplecode/MPPeriodicalTest/MPPeriodicalTest.zip) | 2003-10-27 | | [MPRemoteCommandSample: Using MPRemoteCommandCenter respond to remote control events](https://developer.apple.com/library/archive/samplecode/MPRemoteCommandSample/Introduction/Intro.html#//apple_ref/doc/uid/TP40017322) | [tvOS\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/MPRemoteCommandSampleUsingMPRemoteCommandCenterrespondtoremotecontrolevents/MPRemoteCommandSampleUsingMPRemoteCommandCenterrespondtoremotecontrolevents.zip) | 2016-10-27 | | [MPSCNNHelloWorld: Simple Digit Detection Convolution Neural Networks (CNN)](https://developer.apple.com/library/archive/samplecode/MPSCNNHelloWorld/Introduction/Intro.html#//apple_ref/doc/uid/TP40017482) | [iOS](https://developer.apple.com/library/archive/samplecode/MPSCNNHelloWorldSimpleDigitDetectionConvolutionNeuralNetworksCNN/MPSCNNHelloWorldSimpleDigitDetectionConvolutionNeuralNetworksCNN.zip) | 2016-11-17 | | [MPSMatrixMultiplication: Creating and Multiplying Matrices in Metal](https://developer.apple.com/library/archive/samplecode/MPSMatrixMultiplicationSample/Introduction/Intro.html#//apple_ref/doc/uid/TP40017478) | [iOS](https://developer.apple.com/library/archive/samplecode/MPSMatrixMultiplicationCreatingandMultiplyingMatricesinMetal/MPSMatrixMultiplicationCreatingandMultiplyingMatricesinMetal.zip) | 2016-09-13 | | [MRJToolkitStubs](https://developer.apple.com/library/archive/samplecode/MRJToolkitStubs/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000970) | [macOS](https://developer.apple.com/library/archive/samplecode/MRJToolkitStubs/MRJToolkitStubs.zip) | 2003-01-14 | | [MRJToolkitStubsOld](https://developer.apple.com/library/archive/samplecode/MRJToolkitStubsOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000221) | [macOS](https://developer.apple.com/library/archive/samplecode/MRJToolkitStubsOld/MRJToolkitStubsOld.zip) | 2003-01-14 | | [MTAudioProcessingTap Audio Processor](https://developer.apple.com/library/archive/samplecode/AudioTapProcessor/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012324) | [iOS](https://developer.apple.com/library/archive/samplecode/AudioTapProcessor/AudioTapProcessor.zip) | 2013-08-17 | | [MVCNetworking](https://developer.apple.com/library/archive/samplecode/MVCNetworking/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010443) | [iOS](https://developer.apple.com/library/archive/samplecode/MVCNetworking/MVCNetworking.zip) | 2010-10-22 | | [MacCalendar](https://developer.apple.com/library/archive/samplecode/MacCalendar/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000190) | [macOS](https://developer.apple.com/library/archive/samplecode/MacCalendar/MacCalendar.zip) | 2003-01-14 | | [MacGamma](https://developer.apple.com/library/archive/samplecode/MacGamma/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000087) | [macOS](https://developer.apple.com/library/archive/samplecode/MacGamma/MacGamma.zip) | 2003-07-22 | | [MachPortDump](https://developer.apple.com/library/archive/samplecode/MachPortDump/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003448) | [macOS](https://developer.apple.com/library/archive/samplecode/MachPortDump/MachPortDump.zip) | 2005-08-10 | | [Magic Oracle](https://developer.apple.com/library/archive/samplecode/Magic_Oracle/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000220) | [macOS](https://developer.apple.com/library/archive/samplecode/Magic_Oracle/Magic_Oracle.zip) | 2003-07-22 | | [Magnify](https://developer.apple.com/library/archive/samplecode/Magnify/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000088) | [macOS](https://developer.apple.com/library/archive/samplecode/Magnify/Magnify.zip) | 2003-10-10 | | [MailComposer](https://developer.apple.com/library/archive/samplecode/MailComposer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008865) | [iOS](https://developer.apple.com/library/archive/samplecode/MailComposer/MailComposer.zip) | 2010-06-22 | | [Make QTVR Object](https://developer.apple.com/library/archive/samplecode/Make_QTVR_Object/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000338) | [macOS](https://developer.apple.com/library/archive/samplecode/Make_QTVR_Object/Make_QTVR_Object.zip) | 2003-01-14 | | [Make QTVR Panorama](https://developer.apple.com/library/archive/samplecode/Make_QTVR_Panorama/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000339) | [macOS](https://developer.apple.com/library/archive/samplecode/Make_QTVR_Panorama/Make_QTVR_Panorama.zip) | 2003-01-14 | | [MakeEffectMovie](https://developer.apple.com/library/archive/samplecode/MakeEffectMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001038) | [macOS](https://developer.apple.com/library/archive/samplecode/MakeEffectMovie/MakeEffectMovie.zip) | 2003-01-14 | | [MakeITable](https://developer.apple.com/library/archive/samplecode/MakeITable/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000090) | [macOS](https://developer.apple.com/library/archive/samplecode/MakeITable/MakeITable.zip) | 2003-07-22 | | [MakeIcon](https://developer.apple.com/library/archive/samplecode/MakeIcon/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000089) | [macOS](https://developer.apple.com/library/archive/samplecode/MakeIcon/MakeIcon.zip) | 2003-01-14 | | [MakeiPhoneRefMovie](https://developer.apple.com/library/archive/samplecode/makeiPhoneRefMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004417) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/makeiPhoneRefMovie/makeiPhoneRefMovie.zip) | 2007-08-03 | | [Managed App Configuration](https://developer.apple.com/library/archive/samplecode/sc2279/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013823) | [iOS](https://developer.apple.com/library/archive/samplecode/ManagedAppConfig/ManagedAppConfig.zip) | 2013-10-01 | | [ManagedObjectDataFormatter](https://developer.apple.com/library/archive/samplecode/ManagedObjectDataFormatter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003710) | [Xcode Developer Tools\|macOS](https://developer.apple.com/library/archive/samplecode/ManagedObjectDataFormatter/ManagedObjectDataFormatter.zip) | 2005-06-01 | | [Managing Contacts: Managing containers, groups, and contacts using the Contacts framework](https://developer.apple.com/library/archive/samplecode/ManagingContacts/Introduction/Intro.html#//apple_ref/doc/uid/TP40017031) | [iOS](https://developer.apple.com/library/archive/samplecode/ManagingContactsManagingcontainersgroupsandcontactsusingtheContactsframework/ManagingContactsManagingcontainersgroupsandcontactsusingtheContactsframework.zip) | 2017-02-11 | | [ManagingContactsUI: Using ContactsUI View Controllers and Properties](https://developer.apple.com/library/archive/samplecode/ManagingContactsUI/Introduction/Intro.html#//apple_ref/doc/uid/TP40017633) | [iOS](https://developer.apple.com/library/archive/samplecode/ManagingContactsUIUsingContactsUIViewControllersandProperties/ManagingContactsUIUsingContactsUIViewControllersandProperties.zip) | 2017-07-20 | | [MapCallouts: Using MapKit Annotations](https://developer.apple.com/library/archive/samplecode/MapCallouts/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009746) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/MapCalloutsUsingMapKitAnnotations/MapCalloutsUsingMapKitAnnotations.zip) | 2016-01-14 | | [MapLargeFile](https://developer.apple.com/library/archive/samplecode/MapLargeFile/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003165) | [macOS](https://developer.apple.com/library/archive/samplecode/MapLargeFile/MapLargeFile.zip) | 2003-11-19 | | [MapSearch](https://developer.apple.com/library/archive/samplecode/MapSearch/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013332) | [iOS](https://developer.apple.com/library/archive/samplecode/MapSearch/MapSearch.zip) | 2017-12-07 | | [MarkerPick](https://developer.apple.com/library/archive/samplecode/MarkerPick/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000115) | [macOS](https://developer.apple.com/library/archive/samplecode/MarkerPick/MarkerPick.zip) | 2003-01-14 | | [MassiveImage](https://developer.apple.com/library/archive/samplecode/MassiveImage/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004468) | [macOS](https://developer.apple.com/library/archive/samplecode/MassiveImage/MassiveImage.zip) | 2010-01-25 | | [MatrixMixerTest](https://developer.apple.com/library/archive/samplecode/MatrixMixerTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008645) | [macOS](https://developer.apple.com/library/archive/samplecode/MatrixMixerTest/MatrixMixerTest.zip) | 2016-02-11 | | [MediaLibraryLoader: Using MLMediaLibrary to load and display photos](https://developer.apple.com/library/archive/samplecode/MediaLibraryLoader/Introduction/Intro.html#//apple_ref/doc/uid/TP40017375) | [macOS](https://developer.apple.com/library/archive/samplecode/MediaLibraryLoaderUsingMLMediaLibrarytoloadanddisplayphotos/MediaLibraryLoaderUsingMLMediaLibrarytoloadanddisplayphotos.zip) | 2016-11-03 | | [MediaPresenter](https://developer.apple.com/library/archive/samplecode/MediaPresenter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000965) | [macOS](https://developer.apple.com/library/archive/samplecode/MediaPresenter/MediaPresenter.zip) | 2003-01-14 | | [MemoryBasedBundle](https://developer.apple.com/library/archive/samplecode/MemoryBasedBundle/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003518) | [macOS](https://developer.apple.com/library/archive/samplecode/MemoryBasedBundle/MemoryBasedBundle.zip) | 2005-08-10 | | [MenuItemView: Embedding an NSView inside an NSMenuItem](https://developer.apple.com/library/archive/samplecode/MenuItemView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004136) | [macOS](https://developer.apple.com/library/archive/samplecode/MenuItemViewEmbeddinganNSViewinsideanNSMenuItem/MenuItemViewEmbeddinganNSViewinsideanNSMenuItem.zip) | 2017-03-09 | | [MenuMadness](https://developer.apple.com/library/archive/samplecode/MenuMadness/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008870) | [macOS](https://developer.apple.com/library/archive/samplecode/MenuMadness/MenuMadness.zip) | 2012-06-05 | | [MenuScripter](https://developer.apple.com/library/archive/samplecode/MenuScripter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000668) | [macOS](https://developer.apple.com/library/archive/samplecode/MenuScripter/MenuScripter.zip) | 2003-01-14 | | [MenuViews](https://developer.apple.com/library/archive/samplecode/MenuViews/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000643) | [macOS](https://developer.apple.com/library/archive/samplecode/MenuViews/MenuViews.zip) | 2003-10-24 | | [MessageComposer](https://developer.apple.com/library/archive/samplecode/MessageComposer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010161) | [iOS](https://developer.apple.com/library/archive/samplecode/MessageComposer/MessageComposer.zip) | 2013-07-18 | | [Messages Safari Extension](https://developer.apple.com/library/archive/samplecode/MessagesSafariExtension/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010124) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/MessagesSafariExtension/MessagesSafariExtension.zip) | 2010-06-08 | | [MetafileRead](https://developer.apple.com/library/archive/samplecode/MetafileRead/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000110) | [macOS](https://developer.apple.com/library/archive/samplecode/MetafileRead/MetafileRead.zip) | 2003-01-14 | | [Metal Image Filters: Using the image filters provided by the Metal Performance Shaders framework.](https://developer.apple.com/library/archive/samplecode/MetalImageFilters/Introduction/Intro.html#//apple_ref/doc/uid/TP40017535) | [iOS](https://developer.apple.com/library/archive/samplecode/MetalImageFiltersUsingtheimagefiltersprovidedbytheMetalPerformanceShadersframework/MetalImageFiltersUsingtheimagefiltersprovidedbytheMetalPerformanceShadersframework..zip) | 2016-09-13 | | [Metal N-Body Simulation](https://developer.apple.com/library/archive/samplecode/Metal_NBody_Simulation/Introduction/Intro.html#//apple_ref/doc/uid/TP40016621) | [iOS](https://developer.apple.com/library/archive/samplecode/MetalN-BodySimulation/MetalN-BodySimulation.zip) | 2015-12-10 | | [MetalArrayTexture](https://developer.apple.com/library/archive/samplecode/MetalArrayTexture/Introduction/Intro.html#//apple_ref/doc/uid/TP40016608) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/MetalArrayTexture/MetalArrayTexture.zip) | 2016-03-21 | | [MetalBasicTessellation: A demonstration of the Metal tessellation pipeline](https://developer.apple.com/library/archive/samplecode/MetalBasicTessellation/Introduction/Intro.html#//apple_ref/doc/uid/TP40017289) | [macOS](https://developer.apple.com/library/archive/samplecode/MetalBasicTessellationAdemonstrationoftheMetaltessellationpipeline/MetalBasicTessellationAdemonstrationoftheMetaltessellationpipeline.zip) | 2016-09-13 | | [MetalGameOfLife: Data-parallel Programming with the MTLComputeCommandEncoder in Metal](https://developer.apple.com/library/archive/samplecode/MetalGameOfLife/Introduction/Intro.html#//apple_ref/doc/uid/TP40017382) | [tvOS\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/MetalGameOfLifeData-parallelProgrammingwiththeMTLComputeCommandEncoderinMetal/MetalGameOfLifeData-parallelProgrammingwiththeMTLComputeCommandEncoderinMetal.zip) | 2016-09-13 | | [MetalImageRecognition: Performing Image Recognition with Inception_v3 Network using Metal Performance Shaders Convolutional Neural Network routines](https://developer.apple.com/library/archive/samplecode/MetalImageRecognition/Introduction/Intro.html#//apple_ref/doc/uid/TP40017385) | [iOS](https://developer.apple.com/library/archive/samplecode/MetalImageRecognitionPerformingImageRecognitionwithInceptionv3NetworkusingMetalPerformanceShadersConvolutionalNeuralNetworkroutines/MetalImageRecognitionPerformingImageRecognitionwithInceptionv3NetworkusingMetalPerformanceShadersConvolutionalNeuralNetworkroutines.zip) | 2016-11-12 | | [MetalInstancedHelix](https://developer.apple.com/library/archive/samplecode/MetalInstancedHelix/Introduction/Intro.html#//apple_ref/doc/uid/TP40015091) | [iOS](https://developer.apple.com/library/archive/samplecode/MetalInstancedHelix/MetalInstancedHelix.zip) | 2015-01-24 | | [MetalShaderShowcase](https://developer.apple.com/library/archive/samplecode/MetalShaderShowcase/Introduction/Intro.html#//apple_ref/doc/uid/TP40014696) | [iOS](https://developer.apple.com/library/archive/samplecode/MetalShaderShowcase/MetalShaderShowcase.zip) | 2016-06-13 | | [MetalVideoCapture](https://developer.apple.com/library/archive/samplecode/MetalVideoCapture/Introduction/Intro.html#//apple_ref/doc/uid/TP40015131) | [iOS](https://developer.apple.com/library/archive/samplecode/MetalVideoCapture/MetalVideoCapture.zip) | 2015-10-29 | | [MeterTest](https://developer.apple.com/library/archive/samplecode/MeterTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000909) | [macOS](https://developer.apple.com/library/archive/samplecode/MeterTest/MeterTest.zip) | 2003-03-14 | | [MethodReplacement](https://developer.apple.com/library/archive/samplecode/MethodReplacement/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004023) | [macOS](https://developer.apple.com/library/archive/samplecode/MethodReplacement/MethodReplacement.zip) | 2006-08-01 | | [MixMash](https://developer.apple.com/library/archive/samplecode/MixMash/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008646) | [macOS](https://developer.apple.com/library/archive/samplecode/MixMash/MixMash.zip) | 2009-04-15 | | [Mixer iPodEQ AUGraph Test](https://developer.apple.com/library/archive/samplecode/iPhoneMixerEQGraphTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009555) | [iOS](https://developer.apple.com/library/archive/samplecode/iPhoneMixerEQGraphTest/iPhoneMixerEQGraphTest.zip) | 2014-01-29 | | [Mode](https://developer.apple.com/library/archive/samplecode/Mode/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000500) | [macOS](https://developer.apple.com/library/archive/samplecode/Mode/Mode.zip) | 2003-01-14 | | [ModeWhacker](https://developer.apple.com/library/archive/samplecode/ModeWhacker/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000501) | [macOS](https://developer.apple.com/library/archive/samplecode/ModeWhacker/ModeWhacker.zip) | 2003-01-14 | | [ModifyMouseAccl](https://developer.apple.com/library/archive/samplecode/ModifyMouseAccl/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000416) | [macOS](https://developer.apple.com/library/archive/samplecode/ModifyMouseAccl/ModifyMouseAccl.zip) | 2003-01-14 | | [Monochrome Image](https://developer.apple.com/library/archive/samplecode/Monochrome_Image/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000395) | [macOS](https://developer.apple.com/library/archive/samplecode/Monochrome_Image/Monochrome_Image.zip) | 2003-07-16 | | [MoofWarsOld](https://developer.apple.com/library/archive/samplecode/MoofWarsOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000057) | [macOS](https://developer.apple.com/library/archive/samplecode/MoofWarsOld/MoofWarsOld.zip) | 2003-10-14 | | [MoreAppleEvents](https://developer.apple.com/library/archive/samplecode/MoreAppleEvents/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000669) | [macOS](https://developer.apple.com/library/archive/samplecode/MoreAppleEvents/MoreAppleEvents.zip) | 2003-01-14 | | [MoreAutoPush](https://developer.apple.com/library/archive/samplecode/MoreAutoPush/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000239) | [macOS](https://developer.apple.com/library/archive/samplecode/MoreAutoPush/MoreAutoPush.zip) | 2003-07-22 | | [MoreFiles](https://developer.apple.com/library/archive/samplecode/MoreFiles/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000473) | [macOS](https://developer.apple.com/library/archive/samplecode/MoreFiles/MoreFiles.zip) | 2003-01-14 | | [MoreFilesX](https://developer.apple.com/library/archive/samplecode/MoreFilesX/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000474) | [macOS](https://developer.apple.com/library/archive/samplecode/MoreFilesX/MoreFilesX.zip) | 2005-05-13 | | [MoreFinderEvents](https://developer.apple.com/library/archive/samplecode/MoreFinderEvents/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000206) | [macOS](https://developer.apple.com/library/archive/samplecode/MoreFinderEvents/MoreFinderEvents.zip) | 2003-01-14 | | [MoreIsBetter](https://developer.apple.com/library/archive/samplecode/MoreIsBetter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000732) | [macOS](https://developer.apple.com/library/archive/samplecode/MoreIsBetter/MoreIsBetter.zip) | 2003-10-27 | | [MoreNetworkSetup](https://developer.apple.com/library/archive/samplecode/MoreNetworkSetup/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000240) | [macOS](https://developer.apple.com/library/archive/samplecode/MoreNetworkSetup/MoreNetworkSetup.zip) | 2003-07-22 | | [MoreOSL](https://developer.apple.com/library/archive/samplecode/MoreOSL/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000670) | [macOS](https://developer.apple.com/library/archive/samplecode/MoreOSL/MoreOSL.zip) | 2003-01-14 | | [MoreSCF](https://developer.apple.com/library/archive/samplecode/MoreSCF/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000702) | [macOS](https://developer.apple.com/library/archive/samplecode/MoreSCF/MoreSCF.zip) | 2007-06-07 | | [Moriarity](https://developer.apple.com/library/archive/samplecode/Moriarity/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000396) | [macOS](https://developer.apple.com/library/archive/samplecode/Moriarity/Moriarity.zip) | 2003-01-14 | | [Morse Speech Synthesizer (MorseSynthesizer)](https://developer.apple.com/library/archive/samplecode/MorseSynthesizer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011314) | [macOS](https://developer.apple.com/library/archive/samplecode/MorseSynthesizer/MorseSynthesizer.zip) | 2011-10-19 | | [MotionEffects](https://developer.apple.com/library/archive/samplecode/sc1249/Introduction/Intro.html#//apple_ref/doc/uid/DTS40014521) | [iOS](https://developer.apple.com/library/archive/samplecode/MotionEffects/MotionEffects.zip) | 2014-05-14 | | [MotionGraphs](https://developer.apple.com/library/archive/samplecode/MotionGraphs/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012333) | [iOS](https://developer.apple.com/library/archive/samplecode/MotionGraphs/MotionGraphs.zip) | 2017-02-02 | | [MouseTracking](https://developer.apple.com/library/archive/samplecode/MouseTracking/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003602) | [macOS](https://developer.apple.com/library/archive/samplecode/MouseTracking/MouseTracking.zip) | 2005-06-01 | | [MoveMe](https://developer.apple.com/library/archive/samplecode/MoveMe/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007315) | [iOS](https://developer.apple.com/library/archive/samplecode/MoveMe/MoveMe.zip) | 2015-09-24 | | [Movie From DataRef](https://developer.apple.com/library/archive/samplecode/Movie_From_DataRef/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001039) | [macOS](https://developer.apple.com/library/archive/samplecode/Movie_From_DataRef/Movie_From_DataRef.zip) | 2003-01-14 | | [Movie Overlay](https://developer.apple.com/library/archive/samplecode/Movie_Overlay/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000770) | [macOS](https://developer.apple.com/library/archive/samplecode/Movie_Overlay/Movie_Overlay.zip) | 2008-07-25 | | [MovieAssembler](https://developer.apple.com/library/archive/samplecode/MovieAssembler/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004133) | [macOS](https://developer.apple.com/library/archive/samplecode/MovieAssembler/MovieAssembler.zip) | 2007-11-14 | | [MovieBrowser](https://developer.apple.com/library/archive/samplecode/MovieBrowser/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000846) | [macOS](https://developer.apple.com/library/archive/samplecode/MovieBrowser/MovieBrowser.zip) | 2003-01-14 | | [MovieCallbacks](https://developer.apple.com/library/archive/samplecode/MovieCallbacks/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000966) | [macOS](https://developer.apple.com/library/archive/samplecode/MovieCallbacks/MovieCallbacks.zip) | 2006-05-11 | | [MovieGWorlds](https://developer.apple.com/library/archive/samplecode/MovieGWorlds/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000771) | [macOS](https://developer.apple.com/library/archive/samplecode/MovieGWorlds/MovieGWorlds.zip) | 2003-12-18 | | [MoviePlayer](https://developer.apple.com/library/archive/samplecode/MoviePlayer_iPhone/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007798) | [iOS](https://developer.apple.com/library/archive/samplecode/MoviePlayer_iPhone/MoviePlayer_iPhone.zip) | 2014-04-03 | | [MoviePlayer - C#](https://developer.apple.com/library/archive/samplecode/MoviePlayerCSharp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003809) | [macOS](https://developer.apple.com/library/archive/samplecode/MoviePlayerCSharp/MoviePlayerCSharp.zip) | 2005-11-09 | | [MoviePlayer - Visual Basic](https://developer.apple.com/library/archive/samplecode/MoviePlayer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003801) | [macOS](https://developer.apple.com/library/archive/samplecode/MoviePlayer/MoviePlayer.zip) | 2005-10-13 | | [MovieShell](https://developer.apple.com/library/archive/samplecode/MovieShell/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000326) | [macOS](https://developer.apple.com/library/archive/samplecode/MovieShell/MovieShell.zip) | 2003-01-14 | | [MovieSprites](https://developer.apple.com/library/archive/samplecode/MovieSprites/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001040) | [macOS](https://developer.apple.com/library/archive/samplecode/MovieSprites/MovieSprites.zip) | 2003-01-14 | | [MovieTextFinder](https://developer.apple.com/library/archive/samplecode/MovieTextFinder/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000968) | [macOS](https://developer.apple.com/library/archive/samplecode/MovieTextFinder/MovieTextFinder.zip) | 2006-05-11 | | [MovieToAIFF](https://developer.apple.com/library/archive/samplecode/MovieToAIFF/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000910) | [macOS](https://developer.apple.com/library/archive/samplecode/MovieToAIFF/MovieToAIFF.zip) | 2003-01-14 | | [MovieVideoChart](https://developer.apple.com/library/archive/samplecode/MovieVideoChart/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003678) | [macOS](https://developer.apple.com/library/archive/samplecode/MovieVideoChart/MovieVideoChart.zip) | 2006-07-11 | | [Moving To GCC 4.0](https://developer.apple.com/library/archive/samplecode/MovingToGCC4/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003666) | [Xcode Developer Tools\|macOS](https://developer.apple.com/library/archive/samplecode/MovingToGCC4/MovingToGCC4.zip) | 2005-06-01 | | [MultiPhotoFrame](https://developer.apple.com/library/archive/samplecode/MultiPhotoFrame/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011059) | [macOS](https://developer.apple.com/library/archive/samplecode/MultiPhotoFrame/MultiPhotoFrame.zip) | 2013-08-06 | | [MultipeerGroupChat](https://developer.apple.com/library/archive/samplecode/MultipeerGroupChat/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013691) | [iOS](https://developer.apple.com/library/archive/samplecode/MultipeerGroupChat/MultipeerGroupChat.zip) | 2013-08-27 | | [Multiple Selection with UITableView](https://developer.apple.com/library/archive/samplecode/TableMultiSelect/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011189) | [iOS](https://developer.apple.com/library/archive/samplecode/TableMultiSelect/TableMultiSelect.zip) | 2014-01-13 | | [MultipleDetailViews](https://developer.apple.com/library/archive/samplecode/MultipleDetailViews/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009775) | [iOS](https://developer.apple.com/library/archive/samplecode/MultipleDetailViews/MultipleDetailViews.zip) | 2012-09-18 | | [MultiprecisionFP](https://developer.apple.com/library/archive/samplecode/MultiprecisionFP/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004254) | [macOS](https://developer.apple.com/library/archive/samplecode/MultiprecisionFP/MultiprecisionFP.zip) | 2007-03-26 | | [MungSaver](https://developer.apple.com/library/archive/samplecode/MungSaver/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003167) | [macOS](https://developer.apple.com/library/archive/samplecode/MungSaver/MungSaver.zip) | 2003-11-18 | | [Music](https://developer.apple.com/library/archive/samplecode/Music/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000971) | [macOS](https://developer.apple.com/library/archive/samplecode/Music/Music.zip) | 2006-05-11 | | [MusicCube](https://developer.apple.com/library/archive/samplecode/MusicCube/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008978) | [iOS](https://developer.apple.com/library/archive/samplecode/MusicCube/MusicCube.zip) | 2015-06-30 | | [MusicMotion: Adding Motion Awareness to a Music App](https://developer.apple.com/library/archive/samplecode/MusicMotion/Introduction/Intro.html#//apple_ref/doc/uid/TP40016160) | [iOS](https://developer.apple.com/library/archive/samplecode/MusicMotionAddingMotionAwarenesstoaMusicApp/MusicMotionAddingMotionAwarenesstoaMusicApp.zip) | 2016-09-28 | | [MyCaptureApp](https://developer.apple.com/library/archive/samplecode/MyCaptureApp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000327) | [macOS](https://developer.apple.com/library/archive/samplecode/MyCaptureApp/MyCaptureApp.zip) | 2003-01-14 | | [MyComponent](https://developer.apple.com/library/archive/samplecode/MyComponent/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000818) | [macOS](https://developer.apple.com/library/archive/samplecode/MyComponent/MyComponent.zip) | 2003-01-14 | | [MyComponentOld](https://developer.apple.com/library/archive/samplecode/MyComponentOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000355) | [macOS](https://developer.apple.com/library/archive/samplecode/MyComponentOld/MyComponentOld.zip) | 2003-01-14 | | [MyCustomColorPicker: Writing a custom NSColorPicker](https://developer.apple.com/library/archive/samplecode/MyCustomColorPicker/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004111) | [macOS](https://developer.apple.com/library/archive/samplecode/MyCustomColorPickerWritingacustomNSColorPicker/MyCustomColorPickerWritingacustomNSColorPicker.zip) | 2017-03-09 | | [MyDeviceLoop](https://developer.apple.com/library/archive/samplecode/MyDeviceLoop/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000091) | [macOS](https://developer.apple.com/library/archive/samplecode/MyDeviceLoop/MyDeviceLoop.zip) | 2003-10-10 | | [MyFirstJNIProject](https://developer.apple.com/library/archive/samplecode/MyFirstJNIProject/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003687) | [Java\|macOS](https://developer.apple.com/library/archive/samplecode/MyFirstJNIProject/MyFirstJNIProject.zip) | 2011-03-01 | | [MyGrabOneFrame](https://developer.apple.com/library/archive/samplecode/MyGrabOneFrame/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000328) | [macOS](https://developer.apple.com/library/archive/samplecode/MyGrabOneFrame/MyGrabOneFrame.zip) | 2003-01-14 | | [MyImagePicker](https://developer.apple.com/library/archive/samplecode/MyImagePicker/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010135) | [iOS](https://developer.apple.com/library/archive/samplecode/MyImagePicker/MyImagePicker.zip) | 2013-09-23 | | [MyLife: A simple app for starting iOS development](https://developer.apple.com/library/archive/samplecode/MyLife/Introduction/Intro.html#//apple_ref/doc/uid/TP40017272) | [iOS](https://developer.apple.com/library/archive/samplecode/MyLifeAsimpleappforstartingiOSdevelopment/MyLifeAsimpleappforstartingiOSdevelopment.zip) | 2016-09-13 | | [MyMediaPlayList](https://developer.apple.com/library/archive/samplecode/MyMediaPlayList/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010282) | [macOS](https://developer.apple.com/library/archive/samplecode/MyMediaPlayList/MyMediaPlayList.zip) | 2011-09-12 | | [MyMediaPlayer](https://developer.apple.com/library/archive/samplecode/MyMediaPlayer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009203) | [macOS](https://developer.apple.com/library/archive/samplecode/MyMediaPlayer/MyMediaPlayer.zip) | 2011-09-12 | | [MyMovieFilter](https://developer.apple.com/library/archive/samplecode/MyMovieFilter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004541) | [macOS](https://developer.apple.com/library/archive/samplecode/MyMovieFilter/MyMovieFilter.zip) | 2008-06-02 | | [MyMultipleMoviesApp](https://developer.apple.com/library/archive/samplecode/MyMultipleMoviesApp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000329) | [macOS](https://developer.apple.com/library/archive/samplecode/MyMultipleMoviesApp/MyMultipleMoviesApp.zip) | 2003-01-14 | | [MyPhoto](https://developer.apple.com/library/archive/samplecode/MyPhoto/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003692) | [macOS](https://developer.apple.com/library/archive/samplecode/MyPhoto/MyPhoto.zip) | 2005-06-01 | | [MyQuickTimeApp](https://developer.apple.com/library/archive/samplecode/MyQuickTimeApp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000330) | [macOS](https://developer.apple.com/library/archive/samplecode/MyQuickTimeApp/MyQuickTimeApp.zip) | 2003-01-14 | | [MyRecorder](https://developer.apple.com/library/archive/samplecode/MYRecorder/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004263) | [macOS](https://developer.apple.com/library/archive/samplecode/MYRecorder/MYRecorder.zip) | 2011-08-25 | | [MyRegisterComponent](https://developer.apple.com/library/archive/samplecode/MyRegisterComponent/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000819) | [macOS](https://developer.apple.com/library/archive/samplecode/MyRegisterComponent/MyRegisterComponent.zip) | 2003-01-14 | | [MyRegisterComponentOld](https://developer.apple.com/library/archive/samplecode/MyRegisterComponentOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000356) | [macOS](https://developer.apple.com/library/archive/samplecode/MyRegisterComponentOld/MyRegisterComponentOld.zip) | 2003-01-14 | | [NEHotspotConfiguration Sample](https://developer.apple.com/library/archive/samplecode/NEHotspotConfigurationSample/Introduction/Intro.html#//apple_ref/doc/uid/TP40017679) | [iOS](https://developer.apple.com/library/archive/samplecode/NEHotspotConfigurationSample/NEHotspotConfigurationSample.zip) | 2018-05-10 | | [NPAPI Core Animation Movie Plugin](https://developer.apple.com/library/archive/samplecode/NPAPI_Core_Animation_Movie_Plugin/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011209) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/NPAPI_Core_Animation_Movie_Plugin/NPAPI_Core_Animation_Movie_Plugin.zip) | 2011-09-06 | | [NSAlertTest](https://developer.apple.com/library/archive/samplecode/NSAlertTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010758) | [macOS](https://developer.apple.com/library/archive/samplecode/NSAlertTest/NSAlertTest.zip) | 2012-06-01 | | [NSFontAttributeExplorer](https://developer.apple.com/library/archive/samplecode/NSFontAttributeExplorer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003960) | [macOS](https://developer.apple.com/library/archive/samplecode/NSFontAttributeExplorer/NSFontAttributeExplorer.zip) | 2012-06-04 | | [NSGLImage](https://developer.apple.com/library/archive/samplecode/NSGLImage/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003451) | [macOS](https://developer.apple.com/library/archive/samplecode/NSGLImage/NSGLImage.zip) | 2004-12-01 | | [NSLMiniBrowser](https://developer.apple.com/library/archive/samplecode/NSLMiniBrowser/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000705) | [macOS](https://developer.apple.com/library/archive/samplecode/NSLMiniBrowser/NSLMiniBrowser.zip) | 2003-01-14 | | [NSOpenGL Fullscreen](https://developer.apple.com/library/archive/samplecode/NSOpenGL_Fullscreen/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003168) | [macOS](https://developer.apple.com/library/archive/samplecode/NSOpenGL_Fullscreen/NSOpenGL_Fullscreen.zip) | 2004-02-11 | | [NSOperationSample](https://developer.apple.com/library/archive/samplecode/NSOperationSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004184) | [macOS](https://developer.apple.com/library/archive/samplecode/NSOperationSample/NSOperationSample.zip) | 2012-03-27 | | [NSPathControl Basics](https://developer.apple.com/library/archive/samplecode/ObjectPath/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004137) | [macOS](https://developer.apple.com/library/archive/samplecode/ObjectPath/ObjectPath.zip) | 2013-10-29 | | [NSTableViewBinding](https://developer.apple.com/library/archive/samplecode/NSTableViewBinding/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010522) | [macOS](https://developer.apple.com/library/archive/samplecode/NSTableViewBinding/NSTableViewBinding.zip) | 2012-04-23 | | [NSTouchBar Catalog: Creating and Customizing NSTouchBar](https://developer.apple.com/library/archive/samplecode/NSTouchBarCatalog/Introduction/Intro.html#//apple_ref/doc/uid/TP40017550) | [macOS](https://developer.apple.com/library/archive/samplecode/NSTouchBarCatalogCreatingandCustomizingNSTouchBar/NSTouchBarCatalogCreatingandCustomizingNSTouchBar.zip) | 2017-09-21 | | [NURBSSurfaceVertexProg](https://developer.apple.com/library/archive/samplecode/NURBSSurfaceVertexProg/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000535) | [macOS](https://developer.apple.com/library/archive/samplecode/NURBSSurfaceVertexProg/NURBSSurfaceVertexProg.zip) | 2003-07-07 | | [NameAndAddress](https://developer.apple.com/library/archive/samplecode/NameAndAddress/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000703) | [macOS](https://developer.apple.com/library/archive/samplecode/NameAndAddress/NameAndAddress.zip) | 2003-01-14 | | [NameAndPassword](https://developer.apple.com/library/archive/samplecode/NameAndPassword/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004022) | [macOS](https://developer.apple.com/library/archive/samplecode/NameAndPassword/NameAndPassword.zip) | 2006-07-28 | | [NamingTableAccess](https://developer.apple.com/library/archive/samplecode/NamingTableAccess/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001095) | [macOS](https://developer.apple.com/library/archive/samplecode/NamingTableAccess/NamingTableAccess.zip) | 2003-01-14 | | [NavBar: Customizing UINavigationBar's appearance](https://developer.apple.com/library/archive/samplecode/NavBar/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007418) | [iOS](https://developer.apple.com/library/archive/samplecode/NavBarCustomizingUINavigationBarsappearance/NavBarCustomizingUINavigationBarsappearance.zip) | 2017-12-07 | | [Neighborhood Watch](https://developer.apple.com/library/archive/samplecode/Neighborhood_Watch/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000241) | [macOS](https://developer.apple.com/library/archive/samplecode/Neighborhood_Watch/Neighborhood_Watch.zip) | 2003-01-14 | | [NetSprocketTestOld](https://developer.apple.com/library/archive/samplecode/NetSprocketTestOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000058) | [macOS](https://developer.apple.com/library/archive/samplecode/NetSprocketTestOld/NetSprocketTestOld.zip) | 2003-10-14 | | [Network Stream](https://developer.apple.com/library/archive/samplecode/Network_Stream/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000242) | [macOS](https://developer.apple.com/library/archive/samplecode/Network_Stream/Network_Stream.zip) | 2003-01-14 | | [NetworkAuthentication](https://developer.apple.com/library/archive/samplecode/NetworkAuthentication/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003616) | [macOS](https://developer.apple.com/library/archive/samplecode/NetworkAuthentication/NetworkAuthentication.zip) | 2005-06-01 | | [New NewGWorld](https://developer.apple.com/library/archive/samplecode/New_NewGWorld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000092) | [macOS](https://developer.apple.com/library/archive/samplecode/New_NewGWorld/New_NewGWorld.zip) | 2003-10-10 | | [NewCCursor](https://developer.apple.com/library/archive/samplecode/NewCCursor/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000143) | [macOS](https://developer.apple.com/library/archive/samplecode/NewCCursor/NewCCursor.zip) | 2003-01-14 | | [NewsReader](https://developer.apple.com/library/archive/samplecode/NewsReader/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003985) | [macOS](https://developer.apple.com/library/archive/samplecode/NewsReader/NewsReader.zip) | 2007-06-01 | | [NineSlice](https://developer.apple.com/library/archive/samplecode/NineSlice/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009037) | [macOS](https://developer.apple.com/library/archive/samplecode/NineSlice/NineSlice.zip) | 2011-04-15 | | [NoCopyReceives](https://developer.apple.com/library/archive/samplecode/NoCopyReceives/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000704) | [macOS](https://developer.apple.com/library/archive/samplecode/NoCopyReceives/NoCopyReceives.zip) | 2003-01-14 | | [NoPowerOffKey](https://developer.apple.com/library/archive/samplecode/NoPowerOffKey/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000018) | [macOS](https://developer.apple.com/library/archive/samplecode/NoPowerOffKey/NoPowerOffKey.zip) | 2003-01-14 | | [NoSound](https://developer.apple.com/library/archive/samplecode/NoSound/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000597) | [macOS](https://developer.apple.com/library/archive/samplecode/NoSound/NoSound.zip) | 2003-01-30 | | [Notification Hacks](https://developer.apple.com/library/archive/samplecode/Notification_Hacks/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000194) | [macOS](https://developer.apple.com/library/archive/samplecode/Notification_Hacks/Notification_Hacks.zip) | 2003-01-14 | | [NotificationObserver](https://developer.apple.com/library/archive/samplecode/NotificationObserver/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008834) | [macOS](https://developer.apple.com/library/archive/samplecode/NotificationObserver/NotificationObserver.zip) | 2012-06-05 | | [NotificationPoster](https://developer.apple.com/library/archive/samplecode/NotificationPoster/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008835) | [macOS](https://developer.apple.com/library/archive/samplecode/NotificationPoster/NotificationPoster.zip) | 2012-06-05 | | [NotifyTool](https://developer.apple.com/library/archive/samplecode/NotifyTool/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004462) | [macOS](https://developer.apple.com/library/archive/samplecode/NotifyTool/NotifyTool.zip) | 2012-08-19 | | [NullAuthPlugin](https://developer.apple.com/library/archive/samplecode/NullAuthPlugin/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003789) | [macOS](https://developer.apple.com/library/archive/samplecode/NullAuthPlugin/NullAuthPlugin.zip) | 2011-01-22 | | [NumberInput_IMKit_Sample](https://developer.apple.com/library/archive/samplecode/NumberInput_IMKit_Sample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007466) | [macOS](https://developer.apple.com/library/archive/samplecode/NumberInput_IMKit_Sample/NumberInput_IMKit_Sample.zip) | 2008-03-17 | | [ODOC](https://developer.apple.com/library/archive/samplecode/ODOC/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000671) | [macOS](https://developer.apple.com/library/archive/samplecode/ODOC/ODOC.zip) | 2003-01-14 | | [OOPTESample](https://developer.apple.com/library/archive/samplecode/OOPTESample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000278) | [macOS](https://developer.apple.com/library/archive/samplecode/OOPTESample/OOPTESample.zip) | 2003-01-14 | | [OSA Preserve 68K Registers](https://developer.apple.com/library/archive/samplecode/OSA_Preserve_68K_Registers/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000209) | [macOS](https://developer.apple.com/library/archive/samplecode/OSA_Preserve_68K_Registers/OSA_Preserve_68K_Registers.zip) | 2003-01-14 | | [OSXAdapter](https://developer.apple.com/library/archive/samplecode/OSXAdapter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000685) | [macOS](https://developer.apple.com/library/archive/samplecode/OSXAdapter/OSXAdapter.zip) | 2007-06-01 | | [OT PAPServerSample](https://developer.apple.com/library/archive/samplecode/OT_PAPServerSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000243) | [macOS](https://developer.apple.com/library/archive/samplecode/OT_PAPServerSample/OT_PAPServerSample.zip) | 2003-07-22 | | [OT Virtual Server](https://developer.apple.com/library/archive/samplecode/OT_Virtual_Server/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000706) | [macOS](https://developer.apple.com/library/archive/samplecode/OT_Virtual_Server/OT_Virtual_Server.zip) | 2003-01-14 | | [OTCheckNetForNBPName](https://developer.apple.com/library/archive/samplecode/OTCheckNetForNBPName/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000707) | [macOS](https://developer.apple.com/library/archive/samplecode/OTCheckNetForNBPName/OTCheckNetForNBPName.zip) | 2003-01-14 | | [OTClassicContext](https://developer.apple.com/library/archive/samplecode/OTClassicContext/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000245) | [macOS](https://developer.apple.com/library/archive/samplecode/OTClassicContext/OTClassicContext.zip) | 2003-07-22 | | [OTCodeResource](https://developer.apple.com/library/archive/samplecode/OTCodeResource/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000246) | [macOS](https://developer.apple.com/library/archive/samplecode/OTCodeResource/OTCodeResource.zip) | 2003-07-22 | | [OTDumpInternetStatus](https://developer.apple.com/library/archive/samplecode/OTDumpInternetStatus/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000247) | [macOS](https://developer.apple.com/library/archive/samplecode/OTDumpInternetStatus/OTDumpInternetStatus.zip) | 2003-07-22 | | [OTDumpPortRegistry](https://developer.apple.com/library/archive/samplecode/OTDumpPortRegistry/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000248) | [macOS](https://developer.apple.com/library/archive/samplecode/OTDumpPortRegistry/OTDumpPortRegistry.zip) | 2003-07-22 | | [OTEndpointInfo](https://developer.apple.com/library/archive/samplecode/OTEndpointInfo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000708) | [macOS](https://developer.apple.com/library/archive/samplecode/OTEndpointInfo/OTEndpointInfo.zip) | 2003-08-20 | | [OTFindSerialPorts](https://developer.apple.com/library/archive/samplecode/OTFindSerialPorts/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000249) | [macOS](https://developer.apple.com/library/archive/samplecode/OTFindSerialPorts/OTFindSerialPorts.zip) | 2003-07-22 | | [OTLLCTest](https://developer.apple.com/library/archive/samplecode/OTLLCTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000250) | [macOS](https://developer.apple.com/library/archive/samplecode/OTLLCTest/OTLLCTest.zip) | 2003-07-22 | | [OTLookupNameTest](https://developer.apple.com/library/archive/samplecode/OTLookupNameTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000709) | [macOS](https://developer.apple.com/library/archive/samplecode/OTLookupNameTest/OTLookupNameTest.zip) | 2003-01-14 | | [OTMP](https://developer.apple.com/library/archive/samplecode/OTMP/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000251) | [macOS](https://developer.apple.com/library/archive/samplecode/OTMP/OTMP.zip) | 2003-07-22 | | [OTPAPSampleServer](https://developer.apple.com/library/archive/samplecode/OTPAPSampleServer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000252) | [macOS](https://developer.apple.com/library/archive/samplecode/OTPAPSampleServer/OTPAPSampleServer.zip) | 2003-07-22 | | [OTPingSample](https://developer.apple.com/library/archive/samplecode/OTPingSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000253) | [macOS](https://developer.apple.com/library/archive/samplecode/OTPingSample/OTPingSample.zip) | 2003-07-22 | | [OTSimpleDownloadHTTP](https://developer.apple.com/library/archive/samplecode/OTSimpleDownloadHTTP/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000710) | [macOS](https://developer.apple.com/library/archive/samplecode/OTSimpleDownloadHTTP/OTSimpleDownloadHTTP.zip) | 2003-01-14 | | [OTSimpleServerHTTP](https://developer.apple.com/library/archive/samplecode/OTSimpleServerHTTP/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000711) | [macOS](https://developer.apple.com/library/archive/samplecode/OTSimpleServerHTTP/OTSimpleServerHTTP.zip) | 2003-01-14 | | [OTStreamDumper](https://developer.apple.com/library/archive/samplecode/OTStreamDumper/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000254) | [macOS](https://developer.apple.com/library/archive/samplecode/OTStreamDumper/OTStreamDumper.zip) | 2003-07-22 | | [OTStreamLogViewer](https://developer.apple.com/library/archive/samplecode/OTStreamLogViewer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000255) | [macOS](https://developer.apple.com/library/archive/samplecode/OTStreamLogViewer/OTStreamLogViewer.zip) | 2003-07-22 | | [OTTCPWillDial](https://developer.apple.com/library/archive/samplecode/OTTCPWillDial/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000256) | [macOS](https://developer.apple.com/library/archive/samplecode/OTTCPWillDial/OTTCPWillDial.zip) | 2003-01-14 | | [OTTraceRouteSample](https://developer.apple.com/library/archive/samplecode/OTTraceRouteSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000257) | [macOS](https://developer.apple.com/library/archive/samplecode/OTTraceRouteSample/OTTraceRouteSample.zip) | 2003-07-22 | | [Obj Hierarchy](https://developer.apple.com/library/archive/samplecode/Obj_Hierarchy/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000118) | [macOS](https://developer.apple.com/library/archive/samplecode/Obj_Hierarchy/Obj_Hierarchy.zip) | 2003-01-14 | | [OffSample](https://developer.apple.com/library/archive/samplecode/OffSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000144) | [macOS](https://developer.apple.com/library/archive/samplecode/OffSample/OffSample.zip) | 2003-01-14 | | [OffScreenControlUpdate](https://developer.apple.com/library/archive/samplecode/OffScreenControlUpdate/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000093) | [macOS](https://developer.apple.com/library/archive/samplecode/OffScreenControlUpdate/OffScreenControlUpdate.zip) | 2003-07-22 | | [Offline Compilation Using the OpenCL Compiler](https://developer.apple.com/library/archive/samplecode/OpenCLOfflineCompilation/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011196) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenCLOfflineCompilation/OpenCLOfflineCompilation.zip) | 2014-03-11 | | [OldDelegateOnlyComponent](https://developer.apple.com/library/archive/samplecode/OldDelegateOnlyComponent/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000331) | [macOS](https://developer.apple.com/library/archive/samplecode/OldDelegateOnlyComponent/OldDelegateOnlyComponent.zip) | 2003-10-27 | | [OpenALExample](https://developer.apple.com/library/archive/samplecode/OpenALExample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003587) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenALExample/OpenALExample.zip) | 2012-08-19 | | [OpenCL Hello World Example](https://developer.apple.com/library/archive/samplecode/OpenCL_Hello_World_Example/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008187) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenCL_Hello_World_Example/OpenCL_Hello_World_Example.zip) | 2011-03-01 | | [OpenCL Matrix Transpose Example](https://developer.apple.com/library/archive/samplecode/OpenCL_Matrix_Transpose_Example/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008189) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenCL_Matrix_Transpose_Example/OpenCL_Matrix_Transpose_Example.zip) | 2009-05-13 | | [OpenCL N-Body Simulation](https://developer.apple.com/library/archive/samplecode/OpenCL_NBody_Simulation/Introduction/Intro.html#//apple_ref/doc/uid/TP40016610) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenCLN-BodySimulation/OpenCLN-BodySimulation.zip) | 2015-12-10 | | [OpenCL Parallel Prefix Sum (aka Scan) Example](https://developer.apple.com/library/archive/samplecode/OpenCL_Parallel_Prefix_Sum_Example/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008183) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenCLParallelPrefixSumakaScanExample/OpenCLParallelPrefixSumakaScanExample.zip) | 2017-09-19 | | [OpenCL Parallel Reduction Example](https://developer.apple.com/library/archive/samplecode/OpenCL_Parallel_Reduction_Example/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008188) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenCL_Parallel_Reduction_Example/OpenCL_Parallel_Reduction_Example.zip) | 2009-09-30 | | [OpenCL Procedural Geometric Displacement Example](https://developer.apple.com/library/archive/samplecode/OpenCL_Procedural_Geometric_Displacement_Example/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008192) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenCL_Procedural_Geometric_Displacement_Example/OpenCL_Procedural_Geometric_Displacement_Example.zip) | 2009-09-24 | | [OpenCL Procedural Grass and Terrain Example](https://developer.apple.com/library/archive/samplecode/OpenCL_Procedural_Grass_and_Terrain_Example/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008186) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenCL_Procedural_Grass_and_Terrain_Example/OpenCL_Procedural_Grass_and_Terrain_Example.zip) | 2011-01-12 | | [OpenCL Procedural Noise Example](https://developer.apple.com/library/archive/samplecode/OpenCL_Procedural_Noise_Example/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008191) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenCL_Procedural_Noise_Example/OpenCL_Procedural_Noise_Example.zip) | 2009-10-09 | | [OpenCL RayTraced Quaternion Julia-Set Example](https://developer.apple.com/library/archive/samplecode/OpenCL_RayTraced_Quaternion_Julia-Set_Example/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008190) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenCL_RayTraced_Quaternion_Julia-Set_Example/OpenCL_RayTraced_Quaternion_Julia-Set_Example.zip) | 2011-10-03 | | [OpenCL_FFT](https://developer.apple.com/library/archive/samplecode/OpenCL_FFT/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009395) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenCL_FFT/OpenCL_FFT.zip) | 2012-06-26 | | [OpenCL_OceanWave](https://developer.apple.com/library/archive/samplecode/OpenCL_OceanWave/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009447) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenCL_OceanWave/OpenCL_OceanWave.zip) | 2011-04-13 | | [OpenGL Filter Basics Cocoa](https://developer.apple.com/library/archive/samplecode/OpenGLFilterBasicsCocoa/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004586) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenGLFilterBasicsCocoa/OpenGLFilterBasicsCocoa.zip) | 2008-02-06 | | [OpenGL Image](https://developer.apple.com/library/archive/samplecode/OpenGL_Image/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000538) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenGL_Image/OpenGL_Image.zip) | 2003-01-14 | | [OpenGL Movie](https://developer.apple.com/library/archive/samplecode/OpenGL_Movie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000539) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenGL_Movie/OpenGL_Movie.zip) | 2003-01-14 | | [OpenGL Queries](https://developer.apple.com/library/archive/samplecode/OpenGL_Queries/Introduction/Intro.html#//apple_ref/doc/uid/TP40016611) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenGLQueries/OpenGLQueries.zip) | 2015-12-10 | | [OpenGL Stereo](https://developer.apple.com/library/archive/samplecode/OpenGL_Stereo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000540) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenGL_Stereo/OpenGL_Stereo.zip) | 2003-01-14 | | [OpenGLCaptureToMovie](https://developer.apple.com/library/archive/samplecode/OpenGLScreenCapture/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004445) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenGLScreenCapture/OpenGLScreenCapture.zip) | 2007-08-30 | | [OpenGLCompositorLab](https://developer.apple.com/library/archive/samplecode/OpenGLCompositorLab/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000541) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenGLCompositorLab/OpenGLCompositorLab.zip) | 2003-04-21 | | [OpenGLMovieQT](https://developer.apple.com/library/archive/samplecode/OpenGLMovieQT/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000847) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenGLMovieQT/OpenGLMovieQT.zip) | 2003-01-14 | | [OpenGLScreenSnapshot](https://developer.apple.com/library/archive/samplecode/OpenGLScreenSnapshot/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004288) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenGLScreenSnapshot/OpenGLScreenSnapshot.zip) | 2008-08-14 | | [Optimization TN Demos](https://developer.apple.com/library/archive/samplecode/Optimization_TN_Demos/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000733) | [macOS](https://developer.apple.com/library/archive/samplecode/Optimization_TN_Demos/Optimization_TN_Demos.zip) | 2003-01-14 | | [Out of This GWorld](https://developer.apple.com/library/archive/samplecode/Out_of_This_GWorld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000094) | [macOS](https://developer.apple.com/library/archive/samplecode/Out_of_This_GWorld/Out_of_This_GWorld.zip) | 2003-03-12 | | [OutlineView](https://developer.apple.com/library/archive/samplecode/OutlineView/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008836) | [macOS](https://developer.apple.com/library/archive/samplecode/OutlineView/OutlineView.zip) | 2012-06-05 | | [OutputBins2PDE](https://developer.apple.com/library/archive/samplecode/OutputBins2PDE/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004202) | [macOS](https://developer.apple.com/library/archive/samplecode/OutputBins2PDE/OutputBins2PDE.zip) | 2008-02-08 | | [OutputBinsPDE](https://developer.apple.com/library/archive/samplecode/OutputBinsPDE/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004016) | [macOS](https://developer.apple.com/library/archive/samplecode/OutputBinsPDE/OutputBinsPDE.zip) | 2011-02-07 | | [OverlayView](https://developer.apple.com/library/archive/samplecode/OverlayView/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008906) | [macOS](https://developer.apple.com/library/archive/samplecode/OverlayView/OverlayView.zip) | 2013-02-28 | | [PACKman](https://developer.apple.com/library/archive/samplecode/PACKman/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000013) | [macOS](https://developer.apple.com/library/archive/samplecode/PACKman/PACKman.zip) | 2003-01-14 | | [PBAllocate](https://developer.apple.com/library/archive/samplecode/PBAllocate/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000040) | [macOS](https://developer.apple.com/library/archive/samplecode/PBAllocate/PBAllocate.zip) | 2003-01-14 | | [PBDTGetAppl](https://developer.apple.com/library/archive/samplecode/PBDTGetAppl/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000042) | [macOS](https://developer.apple.com/library/archive/samplecode/PBDTGetAppl/PBDTGetAppl.zip) | 2003-01-14 | | [PBORenderToVertexArray](https://developer.apple.com/library/archive/samplecode/PBORenderToVertexArray/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004089) | [macOS](https://developer.apple.com/library/archive/samplecode/PBORenderToVertexArray/PBORenderToVertexArray.zip) | 2006-10-02 | | [PCCardNetworkSample](https://developer.apple.com/library/archive/samplecode/PCCardNetworkSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000258) | [macOS](https://developer.apple.com/library/archive/samplecode/PCCardNetworkSample/PCCardNetworkSample.zip) | 2003-07-22 | | [PCI Sound Input driver](https://developer.apple.com/library/archive/samplecode/PCI_Sound_Input_driver/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000366) | [macOS](https://developer.apple.com/library/archive/samplecode/PCI_Sound_Input_driver/PCI_Sound_Input_driver.zip) | 2003-03-14 | | [PDEProject](https://developer.apple.com/library/archive/samplecode/PDEProject/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000745) | [macOS](https://developer.apple.com/library/archive/samplecode/PDEProject/PDEProject.zip) | 2003-01-14 | | [PDF Annotation Editor](https://developer.apple.com/library/archive/samplecode/PDFAnnotationEditor/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004035) | [macOS](https://developer.apple.com/library/archive/samplecode/PDFAnnotationEditor/PDFAnnotationEditor.zip) | 2017-10-30 | | [PDF Calendar](https://developer.apple.com/library/archive/samplecode/PDFCalendar/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004034) | [macOS](https://developer.apple.com/library/archive/samplecode/PDFCalendar/PDFCalendar.zip) | 2006-07-31 | | [PDFKitLinker2](https://developer.apple.com/library/archive/samplecode/PDFKitLinker2/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003594) | [macOS](https://developer.apple.com/library/archive/samplecode/PDFKitLinker2/PDFKitLinker2.zip) | 2005-08-10 | | [PDFView](https://developer.apple.com/library/archive/samplecode/PDFView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000398) | [macOS](https://developer.apple.com/library/archive/samplecode/PDFView/PDFView.zip) | 2003-01-23 | | [PDlog Expand](https://developer.apple.com/library/archive/samplecode/PDlog_Expand/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000746) | [macOS](https://developer.apple.com/library/archive/samplecode/PDlog_Expand/PDlog_Expand.zip) | 2003-01-14 | | [PGPuam](https://developer.apple.com/library/archive/samplecode/PGPuam/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000259) | [macOS](https://developer.apple.com/library/archive/samplecode/PGPuam/PGPuam.zip) | 2003-07-22 | | [PIDFromBSDProcessName](https://developer.apple.com/library/archive/samplecode/PIDFromBSDProcessName/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000741) | [macOS](https://developer.apple.com/library/archive/samplecode/PIDFromBSDProcessName/PIDFromBSDProcessName.zip) | 2003-02-13 | | [PIVToken: Using CryptoTokenKit to add support for new types of tokens](https://developer.apple.com/library/archive/samplecode/PIVToken/Introduction/Intro.html#//apple_ref/doc/uid/TP40017285) | [macOS](https://developer.apple.com/library/archive/samplecode/PIVTokenUsingCryptoTokenKittoaddsupportfornewtypesoftokens/PIVTokenUsingCryptoTokenKittoaddsupportfornewtypesoftokens.zip) | 2016-09-22 | | [PMPrinterTest](https://developer.apple.com/library/archive/samplecode/PMPrinterTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003404) | [macOS](https://developer.apple.com/library/archive/samplecode/PMPrinterTest/PMPrinterTest.zip) | 2009-02-13 | | [PPCToolboxKeychain](https://developer.apple.com/library/archive/samplecode/PPCToolboxKeychain/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000210) | [macOS](https://developer.apple.com/library/archive/samplecode/PPCToolboxKeychain/PPCToolboxKeychain.zip) | 2003-03-14 | | [PTPPassThrough](https://developer.apple.com/library/archive/samplecode/PTPPassThrough/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008916) | [macOS](https://developer.apple.com/library/archive/samplecode/PTPPassThrough/PTPPassThrough.zip) | 2009-06-04 | | [PThreadSorts](https://developer.apple.com/library/archive/samplecode/PThreadSorts/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000753) | [macOS](https://developer.apple.com/library/archive/samplecode/PThreadSorts/PThreadSorts.zip) | 2003-01-14 | | [PVRTextureLoader](https://developer.apple.com/library/archive/samplecode/PVRTextureLoader/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008121) | [iOS](https://developer.apple.com/library/archive/samplecode/PVRTextureLoader/PVRTextureLoader.zip) | 2014-03-25 | | [PackageTool](https://developer.apple.com/library/archive/samplecode/PackageTool/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000599) | [macOS](https://developer.apple.com/library/archive/samplecode/PackageTool/PackageTool.zip) | 2003-01-30 | | [Packaged Document for OS X](https://developer.apple.com/library/archive/samplecode/PackagedDocument/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012955) | [macOS](https://developer.apple.com/library/archive/samplecode/PackagedDocumentforOSX/PackagedDocumentforOSX.zip) | 2017-03-09 | | [Packaged Document for iOS](https://developer.apple.com/library/archive/samplecode/sc2281/Introduction/Intro.html#//apple_ref/doc/uid/DTS40014139) | [iOS](https://developer.apple.com/library/archive/samplecode/PackagedDocumentforiOS/PackagedDocumentforiOS.zip) | 2016-02-04 | | [PageControl: Using a Paginated UIScrollView](https://developer.apple.com/library/archive/samplecode/PageControl/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007795) | [iOS](https://developer.apple.com/library/archive/samplecode/PageControlUsingaPaginatedUIScrollView/PageControlUsingaPaginatedUIScrollView.zip) | 2017-09-21 | | [Palette and GWorld](https://developer.apple.com/library/archive/samplecode/Palette_and_GWorld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000503) | [macOS](https://developer.apple.com/library/archive/samplecode/Palette_and_GWorld/Palette_and_GWorld.zip) | 2003-10-10 | | [PaletteAnimation](https://developer.apple.com/library/archive/samplecode/PaletteAnimation/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000095) | [macOS](https://developer.apple.com/library/archive/samplecode/PaletteAnimation/PaletteAnimation.zip) | 2003-03-12 | | [PaletteAnimation gray](https://developer.apple.com/library/archive/samplecode/PaletteAnimation_gray/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000096) | [macOS](https://developer.apple.com/library/archive/samplecode/PaletteAnimation_gray/PaletteAnimation_gray.zip) | 2003-03-12 | | [Pallete DA](https://developer.apple.com/library/archive/samplecode/Pallete_DA/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000145) | [macOS](https://developer.apple.com/library/archive/samplecode/Pallete_DA/Pallete_DA.zip) | 2003-01-14 | | [Passing IOSurfaces from one process to another via Mach RPC](https://developer.apple.com/library/archive/samplecode/MultiGPUIOSurface/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010132) | [macOS](https://developer.apple.com/library/archive/samplecode/MultiGPUIOSurface/MultiGPUIOSurface.zip) | 2014-10-13 | | [Password](https://developer.apple.com/library/archive/samplecode/Password/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000600) | [macOS](https://developer.apple.com/library/archive/samplecode/Password/Password.zip) | 2003-01-30 | | [PasteboardPeeker](https://developer.apple.com/library/archive/samplecode/PasteboardPeeker/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000672) | [macOS](https://developer.apple.com/library/archive/samplecode/PasteboardPeeker/PasteboardPeeker.zip) | 2005-08-10 | | [Pathfinder: GameplayKit Pathfinding Basics](https://developer.apple.com/library/archive/samplecode/Pathfinder_GameplayKit/Introduction/Intro.html#//apple_ref/doc/uid/TP40016461) | [tvOS\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/PathfinderGameplayKitPathfindingBasics/PathfinderGameplayKitPathfindingBasics.zip) | 2016-09-28 | | [People](https://developer.apple.com/library/archive/samplecode/SyncServices_People/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009050) | [macOS](https://developer.apple.com/library/archive/samplecode/SyncServices_People/SyncServices_People.zip) | 2009-07-21 | | [Performing Serial I/O](https://developer.apple.com/library/archive/samplecode/SerialPortSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000454) | [macOS](https://developer.apple.com/library/archive/samplecode/SerialPortSample/SerialPortSample.zip) | 2013-11-07 | | [PhotoEditor: Crafting Modern Cocoa Apps](https://developer.apple.com/library/archive/samplecode/PhotoEditor/Introduction/Intro.html#//apple_ref/doc/uid/TP40017384) | [macOS](https://developer.apple.com/library/archive/samplecode/PhotoEditorCraftingModernCocoaApps/PhotoEditorCraftingModernCocoaApps.zip) | 2016-10-27 | | [PhotoHandoff: Implementing NSUserActivity to hand off user actions](https://developer.apple.com/library/archive/samplecode/PhotoHandoff/Introduction/Intro.html#//apple_ref/doc/uid/TP40014785) | [iOS](https://developer.apple.com/library/archive/samplecode/PhotoHandoffImplementingNSUserActivitytohandoffuseractions/PhotoHandoffImplementingNSUserActivitytohandoffuseractions.zip) | 2014-09-17 | | [PhotoMap: Loading and displaying geotagged photos as MapKit annotations](https://developer.apple.com/library/archive/samplecode/PhotoMap/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011109) | [iOS](https://developer.apple.com/library/archive/samplecode/PhotoMapLoadinganddisplayinggeotaggedphotosasMapKitannotations/PhotoMapLoadinganddisplayinggeotaggedphotosasMapKitannotations.zip) | 2018-04-26 | | [PhotoPicker: Using UIImagePickerController to Select Pictures and Take Photos](https://developer.apple.com/library/archive/samplecode/PhotoPicker/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010196) | [iOS](https://developer.apple.com/library/archive/samplecode/PhotoPickerUsingUIImagePickerControllertoSelectPicturesandTakePhotos/PhotoPickerUsingUIImagePickerControllertoSelectPicturesandTakePhotos.zip) | 2018-01-11 | | [PhotoProgress: Using NSProgress](https://developer.apple.com/library/archive/samplecode/PhotoProgress/Introduction/Intro.html#//apple_ref/doc/uid/TP40016186) | [iOS](https://developer.apple.com/library/archive/samplecode/PhotoProgressUsingNSProgress/PhotoProgressUsingNSProgress.zip) | 2016-10-04 | | [PhotoScroller](https://developer.apple.com/library/archive/samplecode/PhotoScroller/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010080) | [iOS](https://developer.apple.com/library/archive/samplecode/PhotoScroller/PhotoScroller.zip) | 2012-11-06 | | [PhotoSearch](https://developer.apple.com/library/archive/samplecode/PhotoSearch/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003994) | [macOS](https://developer.apple.com/library/archive/samplecode/PhotoSearch/PhotoSearch.zip) | 2015-12-03 | | [PhotoToss: CSS Transforms, Transitions, and Web Fonts](https://developer.apple.com/library/archive/samplecode/CSS_Transforms_Transitions_and_Web_Fonts/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007941) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/CSS_Transforms_Transitions_and_Web_Fonts/CSS_Transforms_Transitions_and_Web_Fonts.zip) | 2008-08-21 | | [PhotoTransitioning: Using UIViewPropertyAnimator to create a fully interative and interruptible custom view controller transition](https://developer.apple.com/library/archive/samplecode/PhotoTransitioning/Introduction/Intro.html#//apple_ref/doc/uid/TP40017554) | [iOS](https://developer.apple.com/library/archive/samplecode/PhotoTransitioningUsingUIViewPropertyAnimatortocreateafullyinterativeandinterruptiblecustomviewcontrollertransition/PhotoTransitioningUsingUIViewPropertyAnimatortocreateafullyinterativeandinterruptiblecustomviewcontrollertransition.zip) | 2016-10-27 | | [PhotosByLocation](https://developer.apple.com/library/archive/samplecode/PhotosByLocation/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010136) | [iOS](https://developer.apple.com/library/archive/samplecode/PhotosByLocation/PhotosByLocation.zip) | 2012-10-23 | | [PicCommentsTest](https://developer.apple.com/library/archive/samplecode/PicCommentsTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000296) | [macOS](https://developer.apple.com/library/archive/samplecode/PicCommentsTest/PicCommentsTest.zip) | 2003-01-14 | | [PickOne](https://developer.apple.com/library/archive/samplecode/PickOne/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000117) | [macOS](https://developer.apple.com/library/archive/samplecode/PickOne/PickOne.zip) | 2003-01-14 | | [Picking Mesh ShapeParts](https://developer.apple.com/library/archive/samplecode/Picking_Mesh_ShapeParts/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000116) | [macOS](https://developer.apple.com/library/archive/samplecode/Picking_Mesh_ShapeParts/Picking_Mesh_ShapeParts.zip) | 2003-01-14 | | [PictInfoTest](https://developer.apple.com/library/archive/samplecode/PictInfoTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000146) | [macOS](https://developer.apple.com/library/archive/samplecode/PictInfoTest/PictInfoTest.zip) | 2003-01-14 | | [PictMovier](https://developer.apple.com/library/archive/samplecode/PictMovier/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000332) | [macOS](https://developer.apple.com/library/archive/samplecode/PictMovier/PictMovier.zip) | 2003-01-14 | | [PictureSharing](https://developer.apple.com/library/archive/samplecode/PictureSharing/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000712) | [macOS](https://developer.apple.com/library/archive/samplecode/PictureSharing/PictureSharing.zip) | 2013-08-15 | | [PictureShow](https://developer.apple.com/library/archive/samplecode/PictureShow/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000686) | [macOS](https://developer.apple.com/library/archive/samplecode/PictureShow/PictureShow.zip) | 2003-03-05 | | [PictureSwiper](https://developer.apple.com/library/archive/samplecode/PictureSwiper/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011096) | [macOS](https://developer.apple.com/library/archive/samplecode/PictureSwiper/PictureSwiper.zip) | 2012-06-04 | | [PictureTaker](https://developer.apple.com/library/archive/samplecode/PictureTaker/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004178) | [macOS](https://developer.apple.com/library/archive/samplecode/PictureTaker/PictureTaker.zip) | 2013-07-30 | | [PixMap2PixPat2ppat](https://developer.apple.com/library/archive/samplecode/PixMap2PixPat2ppat/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000097) | [macOS](https://developer.apple.com/library/archive/samplecode/PixMap2PixPat2ppat/PixMap2PixPat2ppat.zip) | 2003-10-27 | | [Play](https://developer.apple.com/library/archive/samplecode/Play/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000424) | [macOS](https://developer.apple.com/library/archive/samplecode/Play/Play.zip) | 2003-01-14 | | [Play Movie with Controller](https://developer.apple.com/library/archive/samplecode/Play_Movie_with_Controller/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001041) | [macOS](https://developer.apple.com/library/archive/samplecode/Play_Movie_with_Controller/Play_Movie_with_Controller.zip) | 2003-01-14 | | [Play Video Sample](https://developer.apple.com/library/archive/samplecode/Play_Video_Sample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000437) | [macOS](https://developer.apple.com/library/archive/samplecode/Play_Video_Sample/Play_Video_Sample.zip) | 2003-01-14 | | [PlayAudioFileLite](https://developer.apple.com/library/archive/samplecode/PlayAudioFileLite/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000415) | [macOS](https://developer.apple.com/library/archive/samplecode/PlayAudioFileLite/PlayAudioFileLite.zip) | 2004-11-24 | | [PlayFile](https://developer.apple.com/library/archive/samplecode/PlayFile/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008651) | [macOS](https://developer.apple.com/library/archive/samplecode/PlayFile/PlayFile.zip) | 2012-07-17 | | [PlayMovie](https://developer.apple.com/library/archive/samplecode/PlayMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001042) | [macOS](https://developer.apple.com/library/archive/samplecode/PlayMovie/PlayMovie.zip) | 2006-05-11 | | [PlayMovieJava](https://developer.apple.com/library/archive/samplecode/PlayMovieJava/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000973) | [macOS](https://developer.apple.com/library/archive/samplecode/PlayMovieJava/PlayMovieJava.zip) | 2003-01-14 | | [PlayMovieOld](https://developer.apple.com/library/archive/samplecode/PlayMovieOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000333) | [macOS](https://developer.apple.com/library/archive/samplecode/PlayMovieOld/PlayMovieOld.zip) | 2003-01-14 | | [PlaySequence](https://developer.apple.com/library/archive/samplecode/PlaySequence/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008652) | [macOS](https://developer.apple.com/library/archive/samplecode/PlaySequence/PlaySequence.zip) | 2012-07-05 | | [PlaySoftMIDI](https://developer.apple.com/library/archive/samplecode/PlaySoftMIDI/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008635) | [macOS](https://developer.apple.com/library/archive/samplecode/PlaySoftMIDI/PlaySoftMIDI.zip) | 2009-04-15 | | [PlaySound](https://developer.apple.com/library/archive/samplecode/PlaySound/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000975) | [macOS](https://developer.apple.com/library/archive/samplecode/PlaySound/PlaySound.zip) | 2006-05-11 | | [PlayTune](https://developer.apple.com/library/archive/samplecode/PlayTune/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000976) | [macOS](https://developer.apple.com/library/archive/samplecode/PlayTune/PlayTune.zip) | 2006-05-11 | | [Plug-in - Attr](https://developer.apple.com/library/archive/samplecode/Plug-in__-_Attr/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000119) | [macOS](https://developer.apple.com/library/archive/samplecode/Plug-in__-_Attr/Plug-in__-_Attr.zip) | 2003-01-14 | | [Plug-in - Sample Renderer](https://developer.apple.com/library/archive/samplecode/Plug-in__-_Sample_Renderer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000120) | [macOS](https://developer.apple.com/library/archive/samplecode/Plug-in__-_Sample_Renderer/Plug-in__-_Sample_Renderer.zip) | 2003-01-14 | | [Plug-in -DistanceProxyGroup](https://developer.apple.com/library/archive/samplecode/Plug-in__-DistanceProxyGroup/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000121) | [macOS](https://developer.apple.com/library/archive/samplecode/Plug-in__-DistanceProxyGroup/Plug-in__-DistanceProxyGroup.zip) | 2003-01-14 | | [Plug-in -QuickDraw Renderer](https://developer.apple.com/library/archive/samplecode/Plug-in__-QuickDraw_Renderer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000122) | [macOS](https://developer.apple.com/library/archive/samplecode/Plug-in__-QuickDraw_Renderer/Plug-in__-QuickDraw_Renderer.zip) | 2003-01-14 | | [Plug-in -Postscript Renderer](https://developer.apple.com/library/archive/samplecode/Plug-in_-Postscript_Renderer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000123) | [macOS](https://developer.apple.com/library/archive/samplecode/Plug-in_-Postscript_Renderer/Plug-in_-Postscript_Renderer.zip) | 2003-01-14 | | [PocketCoreImage](https://developer.apple.com/library/archive/samplecode/PocketCoreImage/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011220) | [iOS](https://developer.apple.com/library/archive/samplecode/PocketCoreImage/PocketCoreImage.zip) | 2011-10-12 | | [Polygons](https://developer.apple.com/library/archive/samplecode/Polygons/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000399) | [macOS](https://developer.apple.com/library/archive/samplecode/Polygons/Polygons.zip) | 2003-01-14 | | [PopMenus](https://developer.apple.com/library/archive/samplecode/PopMenus/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000195) | [macOS](https://developer.apple.com/library/archive/samplecode/PopMenus/PopMenus.zip) | 2003-01-14 | | [PopUpMenuWithCurFont](https://developer.apple.com/library/archive/samplecode/PopUpMenuWithCurFont/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000601) | [macOS](https://developer.apple.com/library/archive/samplecode/PopUpMenuWithCurFont/PopUpMenuWithCurFont.zip) | 2003-01-30 | | [Popover Controllers in iOS](https://developer.apple.com/library/archive/samplecode/Popovers/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010436) | [iOS](https://developer.apple.com/library/archive/samplecode/Popovers/Popovers.zip) | 2013-09-03 | | [Popover: Using NSPopover to display contents of a view controller](https://developer.apple.com/library/archive/samplecode/Popover/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010725) | [macOS](https://developer.apple.com/library/archive/samplecode/PopoverUsingNSPopovertodisplaycontentsofaviewcontroller/PopoverUsingNSPopovertodisplaycontentsofaviewcontroller.zip) | 2015-12-17 | | [PopupBindings](https://developer.apple.com/library/archive/samplecode/PopupBindings/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010431) | [macOS](https://developer.apple.com/library/archive/samplecode/PopupBindings/PopupBindings.zip) | 2012-04-23 | | [PortMapper](https://developer.apple.com/library/archive/samplecode/PortMapper/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007879) | [macOS](https://developer.apple.com/library/archive/samplecode/PortMapper/PortMapper.zip) | 2008-07-25 | | [PostScript Output Filters](https://developer.apple.com/library/archive/samplecode/PostScript_Output_Filters/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000297) | [macOS](https://developer.apple.com/library/archive/samplecode/PostScript_Output_Filters/PostScript_Output_Filters.zip) | 2003-03-26 | | [PostScriptHandleDemo](https://developer.apple.com/library/archive/samplecode/PostScriptHandleDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000298) | [macOS](https://developer.apple.com/library/archive/samplecode/PostScriptHandleDemo/PostScriptHandleDemo.zip) | 2003-03-26 | | [PosterCircle](https://developer.apple.com/library/archive/samplecode/PosterCircle/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007648) | [Safari\|iOS](https://developer.apple.com/library/archive/samplecode/PosterCircle/PosterCircle.zip) | 2008-06-19 | | [PotLoc: CoreLocation with iPhone and Apple Watch](https://developer.apple.com/library/archive/samplecode/PotLoc/Introduction/Intro.html#//apple_ref/doc/uid/TP40016176) | [watchOS\|iOS](https://developer.apple.com/library/archive/samplecode/PotLocCoreLocationwithiPhoneandAppleWatch/PotLocCoreLocationwithiPhoneandAppleWatch.zip) | 2016-10-04 | | [PreLoginAgents](https://developer.apple.com/library/archive/samplecode/PreLoginAgents/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004414) | [macOS](https://developer.apple.com/library/archive/samplecode/PreLoginAgents/PreLoginAgents.zip) | 2014-04-07 | | [PredicateEditorSample](https://developer.apple.com/library/archive/samplecode/PredicateEditorSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004138) | [macOS](https://developer.apple.com/library/archive/samplecode/PredicateEditorSample/PredicateEditorSample.zip) | 2010-03-15 | | [Preferences](https://developer.apple.com/library/archive/samplecode/Preferences/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008826) | [macOS](https://developer.apple.com/library/archive/samplecode/Preferences/Preferences.zip) | 2011-05-02 | | [PrefsInCloud : Using NSUbiquitousKeyValueStore with iCloud](https://developer.apple.com/library/archive/samplecode/PrefsInCloud/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011365) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/PrefsInCloudUsingNSUbiquitousKeyValueStorewithiCloud/PrefsInCloudUsingNSUbiquitousKeyValueStorewithiCloud.zip) | 2015-10-22 | | [PrefsPane](https://developer.apple.com/library/archive/samplecode/PrefsPane/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004306) | [macOS](https://developer.apple.com/library/archive/samplecode/PrefsPane/PrefsPane.zip) | 2011-09-09 | | [Print Clipped Offscreen](https://developer.apple.com/library/archive/samplecode/Print_Clipped_Offscreen/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000299) | [macOS](https://developer.apple.com/library/archive/samplecode/Print_Clipped_Offscreen/Print_Clipped_Offscreen.zip) | 2003-03-26 | | [Print multipage PICT](https://developer.apple.com/library/archive/samplecode/Print_multipage_PICT/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000300) | [macOS](https://developer.apple.com/library/archive/samplecode/Print_multipage_PICT/Print_multipage_PICT.zip) | 2003-01-14 | | [PrintDialogMagic](https://developer.apple.com/library/archive/samplecode/PrintDialogMagic/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000301) | [macOS](https://developer.apple.com/library/archive/samplecode/PrintDialogMagic/PrintDialogMagic.zip) | 2003-03-26 | | [PrintPhoto: Using the Printing API with Photos](https://developer.apple.com/library/archive/samplecode/PrintPhoto/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010366) | [iOS](https://developer.apple.com/library/archive/samplecode/PrintPhoto/PrintPhoto.zip) | 2015-10-22 | | [Proactive Toolbox: Increasing usage of your app with proactive suggestions using NSUserActivity](https://developer.apple.com/library/archive/samplecode/ProactiveToolbox/Introduction/Intro.html#//apple_ref/doc/uid/TP40017311) | [iOS](https://developer.apple.com/library/archive/samplecode/ProactiveToolboxIncreasingusageofyourappwithproactivesuggestionsusingNSUserActivity/ProactiveToolboxIncreasingusageofyourappwithproactivesuggestionsusingNSUserActivity.zip) | 2016-10-04 | | [ProcDoggie](https://developer.apple.com/library/archive/samplecode/ProcDoggie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000315) | [macOS](https://developer.apple.com/library/archive/samplecode/ProcDoggie/ProcDoggie.zip) | 2003-10-30 | | [Processes](https://developer.apple.com/library/archive/samplecode/Processes/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004019) | [macOS](https://developer.apple.com/library/archive/samplecode/Processes/Processes.zip) | 2006-07-28 | | [ProfileSystem](https://developer.apple.com/library/archive/samplecode/ProfileSystem/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003566) | [macOS](https://developer.apple.com/library/archive/samplecode/ProfileSystem/ProfileSystem.zip) | 2005-05-05 | | [ProgressBar](https://developer.apple.com/library/archive/samplecode/ProgressBar/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004610) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/ProgressBar/ProgressBar.zip) | 2008-02-06 | | [ProgressBars](https://developer.apple.com/library/archive/samplecode/ProgressBars/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000603) | [macOS](https://developer.apple.com/library/archive/samplecode/ProgressBars/ProgressBars.zip) | 2003-01-30 | | [PushyMac](https://developer.apple.com/library/archive/samplecode/PushyMac/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011126) | [macOS](https://developer.apple.com/library/archive/samplecode/PushyMac/PushyMac.zip) | 2011-07-08 | | [PutAwayVolumes](https://developer.apple.com/library/archive/samplecode/PutAwayVolumes/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000043) | [macOS](https://developer.apple.com/library/archive/samplecode/PutAwayVolumes/PutAwayVolumes.zip) | 2003-01-14 | | [QCCocoaComponent](https://developer.apple.com/library/archive/samplecode/QCCocoaComponent/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003597) | [macOS](https://developer.apple.com/library/archive/samplecode/QCCocoaComponent/QCCocoaComponent.zip) | 2006-04-12 | | [QDCocoaComponent](https://developer.apple.com/library/archive/samplecode/QDCocoaComponent/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000687) | [macOS](https://developer.apple.com/library/archive/samplecode/QDCocoaComponent/QDCocoaComponent.zip) | 2005-03-15 | | [QISA](https://developer.apple.com/library/archive/samplecode/QISA/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000714) | [macOS](https://developer.apple.com/library/archive/samplecode/QISA/QISA.zip) | 2003-05-15 | | [QT Capture Widget](https://developer.apple.com/library/archive/samplecode/QTCaptureWidget/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004436) | [macOS](https://developer.apple.com/library/archive/samplecode/QTCaptureWidget/QTCaptureWidget.zip) | 2007-08-27 | | [QT Internals](https://developer.apple.com/library/archive/samplecode/QT_Internals/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000848) | [macOS](https://developer.apple.com/library/archive/samplecode/QT_Internals/QT_Internals.zip) | 2003-01-14 | | [QT QDesign decomp](https://developer.apple.com/library/archive/samplecode/QT_QDesign_decomp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000911) | [macOS](https://developer.apple.com/library/archive/samplecode/QT_QDesign_decomp/QT_QDesign_decomp.zip) | 2003-01-14 | | [QTAudioContextInsert](https://developer.apple.com/library/archive/samplecode/QTAudioContextInsert/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003981) | [macOS](https://developer.apple.com/library/archive/samplecode/QTAudioContextInsert/QTAudioContextInsert.zip) | 2008-01-21 | | [QTAudioExtractionPanel](https://developer.apple.com/library/archive/samplecode/QTAudioExtractionPanel/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003728) | [macOS](https://developer.apple.com/library/archive/samplecode/QTAudioExtractionPanel/QTAudioExtractionPanel.zip) | 2005-06-27 | | [QTBRemoteAdmin](https://developer.apple.com/library/archive/samplecode/QTBRemoteAdmin/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001045) | [macOS](https://developer.apple.com/library/archive/samplecode/QTBRemoteAdmin/QTBRemoteAdmin.zip) | 2003-01-14 | | [QTButtonDemo](https://developer.apple.com/library/archive/samplecode/QTButtonDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000978) | [macOS](https://developer.apple.com/library/archive/samplecode/QTButtonDemo/QTButtonDemo.zip) | 2003-01-14 | | [QTCarbonCoreImage101](https://developer.apple.com/library/archive/samplecode/QTCarbonCoreImage101/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003878) | [macOS](https://developer.apple.com/library/archive/samplecode/QTCarbonCoreImage101/QTCarbonCoreImage101.zip) | 2006-02-14 | | [QTCarbonShell](https://developer.apple.com/library/archive/samplecode/QTCarbonShell/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003611) | [macOS](https://developer.apple.com/library/archive/samplecode/QTCarbonShell/QTCarbonShell.zip) | 2009-03-19 | | [QTCompressionOptionsWindow](https://developer.apple.com/library/archive/samplecode/QTCompressionOptionsWindow/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004627) | [macOS](https://developer.apple.com/library/archive/samplecode/QTCompressionOptionsWindow/QTCompressionOptionsWindow.zip) | 2008-02-22 | | [QTControlCommandLine](https://developer.apple.com/library/archive/samplecode/QTControlCommandLine/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004606) | [macOS](https://developer.apple.com/library/archive/samplecode/QTControlCommandLine/QTControlCommandLine.zip) | 2008-01-29 | | [QTCoreImage101](https://developer.apple.com/library/archive/samplecode/QTCoreImage101/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003719) | [macOS](https://developer.apple.com/library/archive/samplecode/QTCoreImage101/QTCoreImage101.zip) | 2009-10-27 | | [QTCoreVideo101](https://developer.apple.com/library/archive/samplecode/QTCoreVideo101/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003690) | [macOS](https://developer.apple.com/library/archive/samplecode/QTCoreVideo101/QTCoreVideo101.zip) | 2011-01-22 | | [QTCoreVideo102](https://developer.apple.com/library/archive/samplecode/QTCoreVideo102/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007783) | [macOS](https://developer.apple.com/library/archive/samplecode/QTCoreVideo102/QTCoreVideo102.zip) | 2011-06-27 | | [QTCoreVideo103](https://developer.apple.com/library/archive/samplecode/QTCoreVideo103/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007782) | [macOS](https://developer.apple.com/library/archive/samplecode/QTCoreVideo103/QTCoreVideo103.zip) | 2011-06-27 | | [QTCoreVideo201](https://developer.apple.com/library/archive/samplecode/QTCoreVideo201/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007784) | [macOS](https://developer.apple.com/library/archive/samplecode/QTCoreVideo201/QTCoreVideo201.zip) | 2011-06-27 | | [QTCoreVideo202](https://developer.apple.com/library/archive/samplecode/QTCoreVideo202/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007786) | [macOS](https://developer.apple.com/library/archive/samplecode/QTCoreVideo202/QTCoreVideo202.zip) | 2011-06-27 | | [QTCoreVideo301](https://developer.apple.com/library/archive/samplecode/QTCoreVideo301/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007785) | [macOS](https://developer.apple.com/library/archive/samplecode/QTCoreVideo301/QTCoreVideo301.zip) | 2013-07-18 | | [QTEffects Explode](https://developer.apple.com/library/archive/samplecode/QTEffects_Explode/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000834) | [macOS](https://developer.apple.com/library/archive/samplecode/QTEffects_Explode/QTEffects_Explode.zip) | 2003-02-25 | | [QTEffects Explode.win](https://developer.apple.com/library/archive/samplecode/QTEffects_Explode.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000835) | [macOS](https://developer.apple.com/library/archive/samplecode/QTEffects_Explode/QTEffects_Explode.win.zip) | 2003-02-25 | | [QTEffectsDialog - Cocoa](https://developer.apple.com/library/archive/samplecode/QTEffectsDialog_-_Cocoa/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000837) | [macOS](https://developer.apple.com/library/archive/samplecode/QTEffectsDialog_-_Cocoa/QTEffectsDialog_-_Cocoa.zip) | 2003-09-04 | | [QTEffectsJava](https://developer.apple.com/library/archive/samplecode/QTEffectsJava/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000979) | [macOS](https://developer.apple.com/library/archive/samplecode/QTEffectsJava/QTEffectsJava.zip) | 2003-01-14 | | [QTExtractAndConvertToMovieFile](https://developer.apple.com/library/archive/samplecode/QTExtractAndConvertToMovieFile/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004106) | [macOS](https://developer.apple.com/library/archive/samplecode/QTExtractAndConvertToMovieFile/QTExtractAndConvertToMovieFile.zip) | 2006-11-08 | | [QTGraphicsImport](https://developer.apple.com/library/archive/samplecode/QTGraphicsImport/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000781) | [macOS](https://developer.apple.com/library/archive/samplecode/QTGraphicsImport/QTGraphicsImport.zip) | 2003-01-14 | | [QTJava media samples](https://developer.apple.com/library/archive/samplecode/QTJava_media_samples/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000981) | [macOS](https://developer.apple.com/library/archive/samplecode/QTJava_media_samples/QTJava_media_samples.zip) | 2003-01-14 | | [QTKitAdvancedDocument](https://developer.apple.com/library/archive/samplecode/QTKitAdvancedDocument/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003628) | [macOS](https://developer.apple.com/library/archive/samplecode/QTKitAdvancedDocument/QTKitAdvancedDocument.zip) | 2005-08-01 | | [QTKitButtonTester](https://developer.apple.com/library/archive/samplecode/QTKitButtonTester/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004036) | [macOS](https://developer.apple.com/library/archive/samplecode/QTKitButtonTester/QTKitButtonTester.zip) | 2006-08-01 | | [QTKitCommandLine](https://developer.apple.com/library/archive/samplecode/QTKitCommandLine/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003629) | [macOS](https://developer.apple.com/library/archive/samplecode/QTKitCommandLine/QTKitCommandLine.zip) | 2005-06-01 | | [QTKitCreateMovie](https://developer.apple.com/library/archive/samplecode/QTKitCreateMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003671) | [macOS](https://developer.apple.com/library/archive/samplecode/QTKitCreateMovie/QTKitCreateMovie.zip) | 2007-08-31 | | [QTKitFrameStepper](https://developer.apple.com/library/archive/samplecode/QTKitFrameStepper/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003670) | [macOS](https://developer.apple.com/library/archive/samplecode/QTKitFrameStepper/QTKitFrameStepper.zip) | 2005-08-01 | | [QTKitImport](https://developer.apple.com/library/archive/samplecode/QTKitImport/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003686) | [macOS](https://developer.apple.com/library/archive/samplecode/QTKitImport/QTKitImport.zip) | 2005-06-01 | | [QTKitMovieFrameImage](https://developer.apple.com/library/archive/samplecode/QTKitMovieFrameImage/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004452) | [macOS](https://developer.apple.com/library/archive/samplecode/QTKitMovieFrameImage/QTKitMovieFrameImage.zip) | 2007-08-31 | | [QTKitMovieShuffler](https://developer.apple.com/library/archive/samplecode/QTKitMovieShuffler/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003773) | [macOS](https://developer.apple.com/library/archive/samplecode/QTKitMovieShuffler/QTKitMovieShuffler.zip) | 2006-01-03 | | [QTKitPlayer](https://developer.apple.com/library/archive/samplecode/QTKitPlayer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003869) | [macOS](https://developer.apple.com/library/archive/samplecode/QTKitPlayer/QTKitPlayer.zip) | 2007-08-31 | | [QTKitProgressTester](https://developer.apple.com/library/archive/samplecode/QTKitProgressTester/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003631) | [macOS](https://developer.apple.com/library/archive/samplecode/QTKitProgressTester/QTKitProgressTester.zip) | 2005-08-01 | | [QTKitSimpleDocument](https://developer.apple.com/library/archive/samplecode/QTKitSimpleDocument/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003632) | [macOS](https://developer.apple.com/library/archive/samplecode/QTKitSimpleDocument/QTKitSimpleDocument.zip) | 2005-08-01 | | [QTKitThreadedExport](https://developer.apple.com/library/archive/samplecode/QTKitThreadedExport/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004037) | [macOS](https://developer.apple.com/library/archive/samplecode/QTKitThreadedExport/QTKitThreadedExport.zip) | 2006-08-01 | | [QTKitThreadsExporter](https://developer.apple.com/library/archive/samplecode/QTKitThreadsExporter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004418) | [macOS](https://developer.apple.com/library/archive/samplecode/QTKitThreadsExporter/QTKitThreadsExporter.zip) | 2007-10-08 | | [QTKitTimeCode](https://developer.apple.com/library/archive/samplecode/QTKitTimeCode/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004426) | [macOS](https://developer.apple.com/library/archive/samplecode/QTKitTimeCode/QTKitTimeCode.zip) | 2007-09-19 | | [QTMLPrintingSample](https://developer.apple.com/library/archive/samplecode/QTMLPrintingSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000785) | [macOS](https://developer.apple.com/library/archive/samplecode/QTMLPrintingSample/QTMLPrintingSample.zip) | 2003-10-27 | | [QTMP3Player](https://developer.apple.com/library/archive/samplecode/QTMP3Player/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000348) | [macOS](https://developer.apple.com/library/archive/samplecode/QTMP3Player/QTMP3Player.zip) | 2003-01-14 | | [QTMetaData](https://developer.apple.com/library/archive/samplecode/QTMetaData/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003766) | [macOS](https://developer.apple.com/library/archive/samplecode/QTMetaData/QTMetaData.zip) | 2009-03-16 | | [QTMetadataEditor](https://developer.apple.com/library/archive/samplecode/QTMetadataEditor/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007652) | [macOS](https://developer.apple.com/library/archive/samplecode/QTMetadataEditor/QTMetadataEditor.zip) | 2010-05-27 | | [QTMusicToo](https://developer.apple.com/library/archive/samplecode/QTMusicToo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000915) | [macOS](https://developer.apple.com/library/archive/samplecode/QTMusicToo/QTMusicToo.zip) | 2003-03-19 | | [QTNoStepsDemo](https://developer.apple.com/library/archive/samplecode/QTNoStepsDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004038) | [macOS](https://developer.apple.com/library/archive/samplecode/QTNoStepsDemo/QTNoStepsDemo.zip) | 2006-08-01 | | [QTPixelBufferVCToCGImage](https://developer.apple.com/library/archive/samplecode/QTPixelBufferVCToCGImage/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003780) | [macOS](https://developer.apple.com/library/archive/samplecode/QTPixelBufferVCToCGImage/QTPixelBufferVCToCGImage.zip) | 2006-07-07 | | [QTQuartzPlayer](https://developer.apple.com/library/archive/samplecode/QTQuartzPlayer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003787) | [macOS](https://developer.apple.com/library/archive/samplecode/QTQuartzPlayer/QTQuartzPlayer.zip) | 2005-10-04 | | [QTRecorder](https://developer.apple.com/library/archive/samplecode/QTRecorder/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004043) | [macOS](https://developer.apple.com/library/archive/samplecode/QTRecorder/QTRecorder.zip) | 2011-08-25 | | [QTSPketizerReassem](https://developer.apple.com/library/archive/samplecode/QTSPketizerReassem/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001047) | [macOS](https://developer.apple.com/library/archive/samplecode/QTSPketizerReassem/QTSPketizerReassem.zip) | 2003-01-14 | | [QTSPketizerReassem.win](https://developer.apple.com/library/archive/samplecode/QTSPketizerReassem.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001048) | [macOS](https://developer.apple.com/library/archive/samplecode/QTSPketizerReassem/QTSPketizerReassem.win.zip) | 2003-01-14 | | [QTSSConnectionMonitor](https://developer.apple.com/library/archive/samplecode/QTSSConnectionMonitor/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001049) | [macOS](https://developer.apple.com/library/archive/samplecode/QTSSConnectionMonitor/QTSSConnectionMonitor.zip) | 2003-01-14 | | [QTSSInspector](https://developer.apple.com/library/archive/samplecode/QTSSInspector/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001050) | [macOS](https://developer.apple.com/library/archive/samplecode/QTSSInspector/QTSSInspector.zip) | 2003-01-14 | | [QTSetMovieAudioDevice](https://developer.apple.com/library/archive/samplecode/QTSetMovieAudioDevice/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003897) | [macOS](https://developer.apple.com/library/archive/samplecode/QTSetMovieAudioDevice/QTSetMovieAudioDevice.zip) | 2006-03-03 | | [QTSimpleApplet](https://developer.apple.com/library/archive/samplecode/QTSimpleApplet/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000982) | [macOS](https://developer.apple.com/library/archive/samplecode/QTSimpleApplet/QTSimpleApplet.zip) | 2006-06-28 | | [QTStreamingApplet](https://developer.apple.com/library/archive/samplecode/QTStreamingApplet/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000983) | [macOS](https://developer.apple.com/library/archive/samplecode/QTStreamingApplet/QTStreamingApplet.zip) | 2006-06-28 | | [QTTestApplet](https://developer.apple.com/library/archive/samplecode/QTTestApplet/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000984) | [macOS](https://developer.apple.com/library/archive/samplecode/QTTestApplet/QTTestApplet.zip) | 2003-01-14 | | [QTVector](https://developer.apple.com/library/archive/samplecode/QTVector/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000987) | [macOS](https://developer.apple.com/library/archive/samplecode/QTVector/QTVector.zip) | 2003-01-14 | | [QTimadecompression](https://developer.apple.com/library/archive/samplecode/QTimadecompression/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000912) | [macOS](https://developer.apple.com/library/archive/samplecode/QTimadecompression/QTimadecompression.zip) | 2003-01-14 | | [QTtoCG](https://developer.apple.com/library/archive/samplecode/QTtoCG/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000504) | [macOS](https://developer.apple.com/library/archive/samplecode/QTtoCG/QTtoCG.zip) | 2003-01-14 | | [QTtoJavaImage](https://developer.apple.com/library/archive/samplecode/QTtoJavaImage/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000985) | [macOS](https://developer.apple.com/library/archive/samplecode/QTtoJavaImage/QTtoJavaImage.zip) | 2003-01-14 | | [Quadrature: Computing the integral of functions using the Accelerate framework](https://developer.apple.com/library/archive/samplecode/QuadratureSample/Introduction/Intro.html#//apple_ref/doc/uid/TP40017326) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/QuadratureComputingtheintegraloffunctionsusingtheAccelerateframework/QuadratureComputingtheintegraloffunctionsusingtheAccelerateframework.zip) | 2016-10-04 | | [Quartz 2D Shadings](https://developer.apple.com/library/archive/samplecode/Quartz2DShadings/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004363) | [macOS](https://developer.apple.com/library/archive/samplecode/Quartz2DShadings/Quartz2DShadings.zip) | 2007-08-31 | | [Quartz 2D Transformer](https://developer.apple.com/library/archive/samplecode/CGRotation/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004203) | [macOS](https://developer.apple.com/library/archive/samplecode/CGRotation/CGRotation.zip) | 2010-04-12 | | [Quartz Composer AnimatedCompostionLayer](https://developer.apple.com/library/archive/samplecode/AnimatedCompositionLayer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009237) | [macOS](https://developer.apple.com/library/archive/samplecode/AnimatedCompositionLayer/AnimatedCompositionLayer.zip) | 2009-10-27 | | [Quartz Composer BatteryInfo](https://developer.apple.com/library/archive/samplecode/BatteryInfo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009313) | [macOS](https://developer.apple.com/library/archive/samplecode/BatteryInfo/BatteryInfo.zip) | 2009-10-27 | | [Quartz Composer Chart](https://developer.apple.com/library/archive/samplecode/Chart/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009223) | [macOS](https://developer.apple.com/library/archive/samplecode/Chart/Chart.zip) | 2009-10-27 | | [Quartz Composer CommandLineTool](https://developer.apple.com/library/archive/samplecode/CommandLineTool/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009314) | [macOS](https://developer.apple.com/library/archive/samplecode/CommandLineTool/CommandLineTool.zip) | 2009-10-27 | | [Quartz Composer Conceptual Compositions](https://developer.apple.com/library/archive/samplecode/Conceptual/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009227) | [macOS](https://developer.apple.com/library/archive/samplecode/Conceptual/Conceptual.zip) | 2009-10-27 | | [Quartz Composer Core Image](https://developer.apple.com/library/archive/samplecode/Core_Image/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009311) | [macOS](https://developer.apple.com/library/archive/samplecode/Core_Image/Core_Image.zip) | 2009-10-27 | | [Quartz Composer DesktopRenderer](https://developer.apple.com/library/archive/samplecode/DesktopRenderer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009241) | [macOS](https://developer.apple.com/library/archive/samplecode/DesktopRenderer/DesktopRenderer.zip) | 2009-10-27 | | [Quartz Composer FastImage](https://developer.apple.com/library/archive/samplecode/FastImage/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009315) | [macOS](https://developer.apple.com/library/archive/samplecode/FastImage/FastImage.zip) | 2009-10-27 | | [Quartz Composer GLHeightField](https://developer.apple.com/library/archive/samplecode/GLHeightField/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009316) | [macOS](https://developer.apple.com/library/archive/samplecode/GLHeightField/GLHeightField.zip) | 2009-10-27 | | [Quartz Composer GLImage](https://developer.apple.com/library/archive/samplecode/GLImage/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009317) | [macOS](https://developer.apple.com/library/archive/samplecode/GLImage/GLImage.zip) | 2009-10-27 | | [Quartz Composer GLSquare](https://developer.apple.com/library/archive/samplecode/GLSquare/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009318) | [macOS](https://developer.apple.com/library/archive/samplecode/GLSquare/GLSquare.zip) | 2009-10-27 | | [Quartz Composer HistogramOperation](https://developer.apple.com/library/archive/samplecode/HistogramOperation/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009319) | [macOS](https://developer.apple.com/library/archive/samplecode/HistogramOperation/HistogramOperation.zip) | 2009-10-27 | | [Quartz Composer IMStatus](https://developer.apple.com/library/archive/samplecode/IMStatus/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009321) | [macOS](https://developer.apple.com/library/archive/samplecode/IMStatus/IMStatus.zip) | 2009-10-27 | | [Quartz Composer ImageExporter](https://developer.apple.com/library/archive/samplecode/ImageExporter/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009329) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageExporter/ImageExporter.zip) | 2009-10-29 | | [Quartz Composer ImageFX](https://developer.apple.com/library/archive/samplecode/ImageFX/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009224) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageFX/ImageFX.zip) | 2009-10-27 | | [Quartz Composer ImageInfo](https://developer.apple.com/library/archive/samplecode/ImageInfo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009320) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageInfo/ImageInfo.zip) | 2009-10-27 | | [Quartz Composer ImageResizer](https://developer.apple.com/library/archive/samplecode/ImageResizer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009225) | [macOS](https://developer.apple.com/library/archive/samplecode/ImageResizer/ImageResizer.zip) | 2009-10-27 | | [Quartz Composer Live DV](https://developer.apple.com/library/archive/samplecode/QuartzComposerLiveDV/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003650) | [macOS](https://developer.apple.com/library/archive/samplecode/QuartzComposerLiveDV/QuartzComposerLiveDV.zip) | 2005-06-01 | | [Quartz Composer LiveEdit](https://developer.apple.com/library/archive/samplecode/LiveEdit/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009234) | [macOS](https://developer.apple.com/library/archive/samplecode/LiveEdit/LiveEdit.zip) | 2009-10-27 | | [Quartz Composer Matrix](https://developer.apple.com/library/archive/samplecode/QuartzComposerMatrix/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003647) | [macOS](https://developer.apple.com/library/archive/samplecode/QuartzComposerMatrix/QuartzComposerMatrix.zip) | 2005-06-01 | | [Quartz Composer MiniBooth](https://developer.apple.com/library/archive/samplecode/MiniBooth/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009235) | [macOS](https://developer.apple.com/library/archive/samplecode/MiniBooth/MiniBooth.zip) | 2009-10-27 | | [Quartz Composer MiniSOAP](https://developer.apple.com/library/archive/samplecode/MiniSOAP/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009323) | [macOS](https://developer.apple.com/library/archive/samplecode/MiniSOAP/MiniSOAP.zip) | 2009-10-27 | | [Quartz Composer Offline](https://developer.apple.com/library/archive/samplecode/Offline/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009226) | [macOS](https://developer.apple.com/library/archive/samplecode/Offline/Offline.zip) | 2009-10-27 | | [Quartz Composer Offline Rendering](https://developer.apple.com/library/archive/samplecode/QuartzComposerOffline/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003648) | [macOS](https://developer.apple.com/library/archive/samplecode/QuartzComposerOffline/QuartzComposerOffline.zip) | 2005-06-01 | | [Quartz Composer OpenCL](https://developer.apple.com/library/archive/samplecode/OpenCL/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009236) | [macOS](https://developer.apple.com/library/archive/samplecode/OpenCL/OpenCL.zip) | 2009-10-27 | | [Quartz Composer OverlayComposition](https://developer.apple.com/library/archive/samplecode/OverlayComposition/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009240) | [macOS](https://developer.apple.com/library/archive/samplecode/OverlayComposition/OverlayComposition.zip) | 2009-10-27 | | [Quartz Composer ParameterView](https://developer.apple.com/library/archive/samplecode/ParameterView/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009220) | [macOS](https://developer.apple.com/library/archive/samplecode/ParameterView/ParameterView.zip) | 2009-10-27 | | [Quartz Composer Player](https://developer.apple.com/library/archive/samplecode/Player/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009238) | [macOS](https://developer.apple.com/library/archive/samplecode/Player/Player.zip) | 2009-10-27 | | [Quartz Composer Poster](https://developer.apple.com/library/archive/samplecode/Poster/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009239) | [macOS](https://developer.apple.com/library/archive/samplecode/Poster/Poster.zip) | 2009-10-27 | | [Quartz Composer QCTV](https://developer.apple.com/library/archive/samplecode/QuartzComposer_WWDC_QCTV/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003708) | [macOS](https://developer.apple.com/library/archive/samplecode/QuartzComposer_WWDC_QCTV/QuartzComposer_WWDC_QCTV.zip) | 2005-07-06 | | [Quartz Composer RepositoryBrowser](https://developer.apple.com/library/archive/samplecode/RepositoryBrowser/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009221) | [macOS](https://developer.apple.com/library/archive/samplecode/RepositoryBrowser/RepositoryBrowser.zip) | 2009-10-27 | | [Quartz Composer SQLiteQuery](https://developer.apple.com/library/archive/samplecode/SQLiteQuery/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009327) | [macOS](https://developer.apple.com/library/archive/samplecode/SQLiteQuery/SQLiteQuery.zip) | 2009-10-27 | | [Quartz Composer SimpleText](https://developer.apple.com/library/archive/samplecode/SimpleText/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009324) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleText/SimpleText.zip) | 2009-10-27 | | [Quartz Composer SlideShow](https://developer.apple.com/library/archive/samplecode/SlideShow/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000689) | [macOS](https://developer.apple.com/library/archive/samplecode/SlideShow/SlideShow.zip) | 2009-10-27 | | [Quartz Composer SpeechSynthesis](https://developer.apple.com/library/archive/samplecode/SpeechSynthesis/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009325) | [macOS](https://developer.apple.com/library/archive/samplecode/SpeechSynthesis/SpeechSynthesis.zip) | 2009-10-27 | | [Quartz Composer SpotlightSearch](https://developer.apple.com/library/archive/samplecode/SpotlightSearch/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009326) | [macOS](https://developer.apple.com/library/archive/samplecode/SpotlightSearch/SpotlightSearch.zip) | 2009-10-27 | | [Quartz Composer Texture](https://developer.apple.com/library/archive/samplecode/Texture/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009211) | [macOS](https://developer.apple.com/library/archive/samplecode/Texture/Texture.zip) | 2009-10-27 | | [Quartz Composer WWDC 2005 Composition](https://developer.apple.com/library/archive/samplecode/QuartzComposer_WWDC_Composition/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003655) | [macOS](https://developer.apple.com/library/archive/samplecode/QuartzComposer_WWDC_Composition/QuartzComposer_WWDC_Composition.zip) | 2005-06-01 | | [Quartz Composer WWDC 2005 TextEdit](https://developer.apple.com/library/archive/samplecode/QuartzComposer_WWDC_TextEdit/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003654) | [macOS](https://developer.apple.com/library/archive/samplecode/QuartzComposer_WWDC_TextEdit/QuartzComposer_WWDC_TextEdit.zip) | 2005-06-01 | | [Quartz Composer WWDC 2006 Galaxy](https://developer.apple.com/library/archive/samplecode/QCGalaxy/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004070) | [macOS](https://developer.apple.com/library/archive/samplecode/QCGalaxy/QCGalaxy.zip) | 2006-08-07 | | [Quartz Composer WWDC 2007 High Scores](https://developer.apple.com/library/archive/samplecode/PinBallHighScores/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004372) | [macOS](https://developer.apple.com/library/archive/samplecode/PinBallHighScores/PinBallHighScores.zip) | 2007-06-11 | | [Quartz Composer WWDC 2008 Interaction](https://developer.apple.com/library/archive/samplecode/Interaction/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007746) | [macOS](https://developer.apple.com/library/archive/samplecode/Interaction/Interaction.zip) | 2008-06-04 | | [Quartz Composer iPatch](https://developer.apple.com/library/archive/samplecode/iPatch/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009322) | [macOS](https://developer.apple.com/library/archive/samplecode/iPatch/iPatch.zip) | 2009-10-27 | | [Quartz EB](https://developer.apple.com/library/archive/samplecode/Quartz_EB/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000505) | [macOS](https://developer.apple.com/library/archive/samplecode/Quartz_EB/Quartz_EB.zip) | 2003-01-14 | | [Quartz2D for iOS](https://developer.apple.com/library/archive/samplecode/QuartzDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007531) | [iOS](https://developer.apple.com/library/archive/samplecode/Quartz2DforiOS/Quartz2DforiOS.zip) | 2017-09-19 | | [Quartz2DBasics](https://developer.apple.com/library/archive/samplecode/Quartz2DBasics/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003975) | [macOS](https://developer.apple.com/library/archive/samplecode/Quartz2DBasics/Quartz2DBasics.zip) | 2006-09-11 | | [QuartzCache](https://developer.apple.com/library/archive/samplecode/QuartzCache/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003663) | [macOS](https://developer.apple.com/library/archive/samplecode/QuartzCache/QuartzCache.zip) | 2005-06-01 | | [QuartzComposerSamplePatches](https://developer.apple.com/library/archive/samplecode/QuartzComposerSamplePatches/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004374) | [macOS](https://developer.apple.com/library/archive/samplecode/QuartzComposerSamplePatches/QuartzComposerSamplePatches.zip) | 2007-06-11 | | [QuartzLines](https://developer.apple.com/library/archive/samplecode/QuartzLines/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003645) | [macOS](https://developer.apple.com/library/archive/samplecode/QuartzLines/QuartzLines.zip) | 2005-06-01 | | [QuartzShapes](https://developer.apple.com/library/archive/samplecode/QuartzShapes/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003503) | [macOS](https://developer.apple.com/library/archive/samplecode/QuartzShapes/QuartzShapes.zip) | 2005-03-08 | | [QuickContacts](https://developer.apple.com/library/archive/samplecode/QuickContacts/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009475) | [iOS](https://developer.apple.com/library/archive/samplecode/QuickContacts/QuickContacts.zip) | 2014-07-17 | | [QuickDraw FX](https://developer.apple.com/library/archive/samplecode/QuickDraw_FX/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000148) | [macOS](https://developer.apple.com/library/archive/samplecode/QuickDraw_FX/QuickDraw_FX.zip) | 2003-10-27 | | [QuickLookDownloader](https://developer.apple.com/library/archive/samplecode/QuickLookDownloader/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009082) | [macOS](https://developer.apple.com/library/archive/samplecode/QuickLookDownloader/QuickLookDownloader.zip) | 2017-10-26 | | [QuickLookSketch](https://developer.apple.com/library/archive/samplecode/QuickLookSketch/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004031) | [macOS](https://developer.apple.com/library/archive/samplecode/QuickLookSketch/QuickLookSketch.zip) | 2009-05-11 | | [QuickSwitch: Supporting Quick Watch Switching with WatchConnectivity](https://developer.apple.com/library/archive/samplecode/QuickSwitch/Introduction/Intro.html#//apple_ref/doc/uid/TP40016647) | [watchOS\|iOS](https://developer.apple.com/library/archive/samplecode/QuickSwitchSupportingQuickWatchSwitchingwithWatchConnectivity/QuickSwitchSupportingQuickWatchSwitchingwithWatchConnectivity.zip) | 2016-10-04 | | [QuickTimeMovieControl](https://developer.apple.com/library/archive/samplecode/QuickTimeMovieControl/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003465) | [macOS](https://developer.apple.com/library/archive/samplecode/QuickTimeMovieControl/QuickTimeMovieControl.zip) | 2005-08-10 | | [RAMDisk](https://developer.apple.com/library/archive/samplecode/RAMDisk/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000430) | [macOS](https://developer.apple.com/library/archive/samplecode/RAMDisk/RAMDisk.zip) | 2003-01-14 | | [RAVE Starter Samples](https://developer.apple.com/library/archive/samplecode/RAVE_Starter_Samples/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000155) | [macOS](https://developer.apple.com/library/archive/samplecode/RAVE_Starter_Samples/RAVE_Starter_Samples.zip) | 2003-01-14 | | [RGB Image](https://developer.apple.com/library/archive/samplecode/RGB_Image/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000400) | [macOS](https://developer.apple.com/library/archive/samplecode/RGB_Image/RGB_Image.zip) | 2003-01-14 | | [RGB ValueTransformers](https://developer.apple.com/library/archive/samplecode/RGB_ValueTransformers/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003170) | [macOS](https://developer.apple.com/library/archive/samplecode/RGB_ValueTransformers/RGB_ValueTransformers.zip) | 2003-11-18 | | [ROMResourceDump](https://developer.apple.com/library/archive/samplecode/ROMResourceDump/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000607) | [macOS](https://developer.apple.com/library/archive/samplecode/ROMResourceDump/ROMResourceDump.zip) | 2003-01-30 | | [ROT13AuthPlugin](https://developer.apple.com/library/archive/samplecode/ROT13AuthPlugin/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009115) | [macOS](https://developer.apple.com/library/archive/samplecode/ROT13AuthPlugin/ROT13AuthPlugin.zip) | 2012-06-27 | | [RadiantColorPicker](https://developer.apple.com/library/archive/samplecode/RadiantColorPicker/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008861) | [macOS](https://developer.apple.com/library/archive/samplecode/RadiantColorPicker/RadiantColorPicker.zip) | 2009-05-29 | | [RaveContextSample](https://developer.apple.com/library/archive/samplecode/RaveContextSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000156) | [macOS](https://developer.apple.com/library/archive/samplecode/RaveContextSample/RaveContextSample.zip) | 2003-01-14 | | [RaveEngineInfoSample](https://developer.apple.com/library/archive/samplecode/RaveEngineInfoSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000157) | [macOS](https://developer.apple.com/library/archive/samplecode/RaveEngineInfoSample/RaveEngineInfoSample.zip) | 2003-01-14 | | [RawAudioFileComponent](https://developer.apple.com/library/archive/samplecode/RawAudioFileComponent/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008638) | [macOS](https://developer.apple.com/library/archive/samplecode/RawAudioFileComponent/RawAudioFileComponent.zip) | 2014-06-26 | | [RawExpose: Using CIRAWFilter to Decode RAW Images](https://developer.apple.com/library/archive/samplecode/RawExpose/Introduction/Intro.html#//apple_ref/doc/uid/TP40017310) | [iOS](https://developer.apple.com/library/archive/samplecode/RawExposeUsingCIRAWFiltertoDecodeRAWImages/RawExposeUsingCIRAWFiltertoDecodeRAWImages.zip) | 2016-10-04 | | [ReKeyTrans](https://developer.apple.com/library/archive/samplecode/ReKeyTrans/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000605) | [macOS](https://developer.apple.com/library/archive/samplecode/ReKeyTrans/ReKeyTrans.zip) | 2003-01-30 | | [Reachability](https://developer.apple.com/library/archive/samplecode/Reachability/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007324) | [iOS](https://developer.apple.com/library/archive/samplecode/Reachability/Reachability.zip) | 2016-05-05 | | [ReadLocation](https://developer.apple.com/library/archive/samplecode/ReadLocation/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000604) | [macOS](https://developer.apple.com/library/archive/samplecode/ReadLocation/ReadLocation.zip) | 2003-01-30 | | [ReadSector MSDOS](https://developer.apple.com/library/archive/samplecode/ReadSector_MSDOS/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000431) | [macOS](https://developer.apple.com/library/archive/samplecode/ReadSector_MSDOS/ReadSector_MSDOS.zip) | 2003-01-14 | | [Real-time Video Processing Using AVPlayerItemVideoOutput](https://developer.apple.com/library/archive/samplecode/AVBasicVideoOutput/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013109) | [iOS](https://developer.apple.com/library/archive/samplecode/Real-timeVideoProcessingUsingAVPlayerItemVideoOutput/Real-timeVideoProcessingUsingAVPlayerItemVideoOutput.zip) | 2015-10-01 | | [RecentItems](https://developer.apple.com/library/archive/samplecode/RecentItems/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003944) | [macOS](https://developer.apple.com/library/archive/samplecode/RecentItems/RecentItems.zip) | 2006-10-09 | | [Record RetrievePictInfo](https://developer.apple.com/library/archive/samplecode/Record_RetrievePictInfo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000158) | [macOS](https://developer.apple.com/library/archive/samplecode/Record_RetrievePictInfo/Record_RetrievePictInfo.zip) | 2003-10-10 | | [Record sound specific rate](https://developer.apple.com/library/archive/samplecode/Record_sound_specific_rate/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000367) | [macOS](https://developer.apple.com/library/archive/samplecode/Record_sound_specific_rate/Record_sound_specific_rate.zip) | 2003-03-14 | | [Record sound to disk](https://developer.apple.com/library/archive/samplecode/Record_sound_to_disk/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000368) | [macOS](https://developer.apple.com/library/archive/samplecode/Record_sound_to_disk/Record_sound_to_disk.zip) | 2003-03-14 | | [RecordAudioToFile](https://developer.apple.com/library/archive/samplecode/RecordAudioToFile/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003986) | [macOS](https://developer.apple.com/library/archive/samplecode/RecordAudioToFile/RecordAudioToFile.zip) | 2007-02-27 | | [RecordToFile](https://developer.apple.com/library/archive/samplecode/RecordToFile/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000349) | [macOS](https://developer.apple.com/library/archive/samplecode/RecordToFile/RecordToFile.zip) | 2003-01-14 | | [Red Rocket](https://developer.apple.com/library/archive/samplecode/Red_Rocket/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000544) | [macOS](https://developer.apple.com/library/archive/samplecode/Red_Rocket/Red_Rocket.zip) | 2003-01-14 | | [Reducer](https://developer.apple.com/library/archive/samplecode/Reducer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003626) | [macOS](https://developer.apple.com/library/archive/samplecode/Reducer/Reducer.zip) | 2005-06-06 | | [Reflection](https://developer.apple.com/library/archive/samplecode/Reflection/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008063) | [iOS](https://developer.apple.com/library/archive/samplecode/Reflection/Reflection.zip) | 2015-09-24 | | [Regions: region monitoring, significant location changes, background location service, location service authorization](https://developer.apple.com/library/archive/samplecode/Regions/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010726) | [iOS](https://developer.apple.com/library/archive/samplecode/Regionsregionmonitoringsignificantlocationchangesbackgroundlocationservicelocationserviceauthorization/Regionsregionmonitoringsignificantlocationchangesbackgroundlocationservicelocationserviceauthorization.zip) | 2016-02-11 | | [Reinstallable](https://developer.apple.com/library/archive/samplecode/Reinstallable/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000196) | [macOS](https://developer.apple.com/library/archive/samplecode/Reinstallable/Reinstallable.zip) | 2003-01-14 | | [Reload Safari Extension](https://developer.apple.com/library/archive/samplecode/ReloadSafariExtension/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010125) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/ReloadSafariExtension/ReloadSafariExtension.zip) | 2010-06-08 | | [Reminders](https://developer.apple.com/library/archive/samplecode/Reminders/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007877) | [macOS](https://developer.apple.com/library/archive/samplecode/Reminders/Reminders.zip) | 2008-07-25 | | [RemoteCurrency](https://developer.apple.com/library/archive/samplecode/RemoteCurrency/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011216) | [macOS](https://developer.apple.com/library/archive/samplecode/RemoteCurrency/RemoteCurrency.zip) | 2011-09-09 | | [ReplicatorDemo](https://developer.apple.com/library/archive/samplecode/ReplicatorDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009049) | [macOS](https://developer.apple.com/library/archive/samplecode/ReplicatorDemo/ReplicatorDemo.zip) | 2009-07-21 | | [RequiredFinderColors](https://developer.apple.com/library/archive/samplecode/RequiredFinderColors/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000606) | [macOS](https://developer.apple.com/library/archive/samplecode/RequiredFinderColors/RequiredFinderColors.zip) | 2003-01-30 | | [Restore Screen Cluts](https://developer.apple.com/library/archive/samplecode/Restore_Screen_Cluts/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000159) | [macOS](https://developer.apple.com/library/archive/samplecode/Restore_Screen_Cluts/Restore_Screen_Cluts.zip) | 2003-03-12 | | [Reviews](https://developer.apple.com/library/archive/samplecode/Reviews/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010057) | [macOS](https://developer.apple.com/library/archive/samplecode/Reviews/Reviews.zip) | 2011-07-21 | | [RollerCoaster](https://developer.apple.com/library/archive/samplecode/RollerCoaster/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000881) | [macOS](https://developer.apple.com/library/archive/samplecode/RollerCoaster/RollerCoaster.zip) | 2003-01-14 | | [RollerCoaster.win](https://developer.apple.com/library/archive/samplecode/RollerCoaster.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000882) | [macOS](https://developer.apple.com/library/archive/samplecode/RollerCoaster/RollerCoaster.win.zip) | 2003-01-14 | | [RosyWriter](https://developer.apple.com/library/archive/samplecode/RosyWriter/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011110) | [iOS](https://developer.apple.com/library/archive/samplecode/RosyWriter/RosyWriter.zip) | 2016-09-13 | | [Rotate Bitmap 90](https://developer.apple.com/library/archive/samplecode/Rotate_Bitmap_90/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000160) | [macOS](https://developer.apple.com/library/archive/samplecode/Rotate_Bitmap_90/Rotate_Bitmap_90.zip) | 2003-10-27 | | [RotateString](https://developer.apple.com/library/archive/samplecode/RotateString/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000161) | [macOS](https://developer.apple.com/library/archive/samplecode/RotateString/RotateString.zip) | 2003-10-10 | | [Rotated Thingies](https://developer.apple.com/library/archive/samplecode/Rotated_Thingies/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000302) | [macOS](https://developer.apple.com/library/archive/samplecode/Rotated_Thingies/Rotated_Thingies.zip) | 2003-01-14 | | [RoundTransparentWindow](https://developer.apple.com/library/archive/samplecode/RoundTransparentWindow/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000401) | [macOS](https://developer.apple.com/library/archive/samplecode/RoundTransparentWindow/RoundTransparentWindow.zip) | 2013-05-08 | | [Rubber Bandit](https://developer.apple.com/library/archive/samplecode/Rubber_Bandit/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000162) | [macOS](https://developer.apple.com/library/archive/samplecode/Rubber_Bandit/Rubber_Bandit.zip) | 2003-10-27 | | [Rulers](https://developer.apple.com/library/archive/samplecode/Rulers/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008871) | [macOS](https://developer.apple.com/library/archive/samplecode/Rulers/Rulers.zip) | 2012-06-07 | | [S3V](https://developer.apple.com/library/archive/samplecode/S3V/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000153) | [macOS](https://developer.apple.com/library/archive/samplecode/S3V/S3V.zip) | 2003-01-14 | | [SBSendEmail](https://developer.apple.com/library/archive/samplecode/SBSendEmail/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004645) | [macOS](https://developer.apple.com/library/archive/samplecode/SBSendEmail/SBSendEmail.zip) | 2011-08-05 | | [SBSetFinderComment](https://developer.apple.com/library/archive/samplecode/SBSetFinderComment/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004535) | [macOS](https://developer.apple.com/library/archive/samplecode/SBSetFinderComment/SBSetFinderComment.zip) | 2011-07-14 | | [SBSystemPrefs](https://developer.apple.com/library/archive/samplecode/SBSystemPrefs/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008043) | [macOS](https://developer.apple.com/library/archive/samplecode/SBSystemPrefs/SBSystemPrefs.zip) | 2011-07-19 | | [SCAudioCompress](https://developer.apple.com/library/archive/samplecode/scaudiocompress/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003962) | [macOS](https://developer.apple.com/library/archive/samplecode/scaudiocompress/scaudiocompress.zip) | 2006-08-22 | | [SCSI Async Sample](https://developer.apple.com/library/archive/samplecode/SCSI_Async_Sample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000022) | [macOS](https://developer.apple.com/library/archive/samplecode/SCSI_Async_Sample/SCSI_Async_Sample.zip) | 2003-01-14 | | [SCSI DriveID Sample](https://developer.apple.com/library/archive/samplecode/SCSI_DriveID_Sample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000023) | [macOS](https://developer.apple.com/library/archive/samplecode/SCSI_DriveID_Sample/SCSI_DriveID_Sample.zip) | 2003-01-14 | | [SCSI Find Devices](https://developer.apple.com/library/archive/samplecode/SCSI_Find_Devices/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000024) | [macOS](https://developer.apple.com/library/archive/samplecode/SCSI_Find_Devices/SCSI_Find_Devices.zip) | 2003-01-14 | | [SCSI Inquiry](https://developer.apple.com/library/archive/samplecode/SCSI_Inquiry/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000025) | [macOS](https://developer.apple.com/library/archive/samplecode/SCSI_Inquiry/SCSI_Inquiry.zip) | 2003-01-14 | | [SCSI Simple Sample](https://developer.apple.com/library/archive/samplecode/SCSI_Simple_Sample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000027) | [macOS](https://developer.apple.com/library/archive/samplecode/SCSI_Simple_Sample/SCSI_Simple_Sample.zip) | 2003-01-14 | | [SCSIHBAEmulator](https://developer.apple.com/library/archive/samplecode/SCSIHBAEmulator/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004195) | [macOS](https://developer.apple.com/library/archive/samplecode/SCSIHBAEmulator/SCSIHBAEmulator.zip) | 2007-02-20 | | [SCSIOldAndNew](https://developer.apple.com/library/archive/samplecode/SCSIOldAndNew/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000448) | [macOS](https://developer.apple.com/library/archive/samplecode/SCSIOldAndNew/SCSIOldAndNew.zip) | 2006-12-07 | | [SDKExample](https://developer.apple.com/library/archive/samplecode/SDKExample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003702) | [macOS](https://developer.apple.com/library/archive/samplecode/SDKExample/SDKExample.zip) | 2005-06-06 | | [SGCapture](https://developer.apple.com/library/archive/samplecode/SGCapture/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000988) | [macOS](https://developer.apple.com/library/archive/samplecode/SGCapture/SGCapture.zip) | 2003-01-14 | | [SGCapture2Disk](https://developer.apple.com/library/archive/samplecode/SGCapture2Disk/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000990) | [macOS](https://developer.apple.com/library/archive/samplecode/SGCapture2Disk/SGCapture2Disk.zip) | 2003-01-14 | | [SGDataProcDemo](https://developer.apple.com/library/archive/samplecode/SGDataProcDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000992) | [macOS](https://developer.apple.com/library/archive/samplecode/SGDataProcDemo/SGDataProcDemo.zip) | 2003-01-14 | | [SGDataProcSample](https://developer.apple.com/library/archive/samplecode/SGDataProcSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000807) | [macOS](https://developer.apple.com/library/archive/samplecode/SGDataProcSample/SGDataProcSample.zip) | 2003-01-14 | | [SGDevices](https://developer.apple.com/library/archive/samplecode/SGDevices/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000808) | [macOS](https://developer.apple.com/library/archive/samplecode/SGDevices/SGDevices.zip) | 2003-01-14 | | [SICN LDEF](https://developer.apple.com/library/archive/samplecode/SICN_LDEF/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000615) | [macOS](https://developer.apple.com/library/archive/samplecode/SICN_LDEF/SICN_LDEF.zip) | 2003-01-30 | | [SIMD Primer](https://developer.apple.com/library/archive/samplecode/SIMDPrimer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007728) | [macOS](https://developer.apple.com/library/archive/samplecode/SIMDPrimer/SIMDPrimer.zip) | 2008-06-06 | | [SMARTQuery](https://developer.apple.com/library/archive/samplecode/SMARTQuery/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004291) | [macOS](https://developer.apple.com/library/archive/samplecode/SMARTQuery/SMARTQuery.zip) | 2007-05-30 | | [SMJobBless](https://developer.apple.com/library/archive/samplecode/SMJobBless/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010071) | [macOS](https://developer.apple.com/library/archive/samplecode/SMJobBless/SMJobBless.zip) | 2013-09-17 | | [SOAPClient](https://developer.apple.com/library/archive/samplecode/SOAPClient/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001098) | [macOS](https://developer.apple.com/library/archive/samplecode/SOAPClient/SOAPClient.zip) | 2003-01-14 | | [SOAPServer](https://developer.apple.com/library/archive/samplecode/SOAPServer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001099) | [macOS](https://developer.apple.com/library/archive/samplecode/SOAPServer/SOAPServer.zip) | 2003-01-14 | | [SRVResolver](https://developer.apple.com/library/archive/samplecode/SRVResolver/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009625) | [macOS](https://developer.apple.com/library/archive/samplecode/SRVResolver/SRVResolver.zip) | 2012-08-29 | | [SSLSample](https://developer.apple.com/library/archive/samplecode/SSLSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001088) | [macOS](https://developer.apple.com/library/archive/samplecode/SSLSample/SSLSample.zip) | 2003-01-14 | | [STD File Saver](https://developer.apple.com/library/archive/samplecode/STD_File_Saver/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000307) | [macOS](https://developer.apple.com/library/archive/samplecode/STD_File_Saver/STD_File_Saver.zip) | 2003-03-26 | | [STUCAuthoringDeviceCocoaSample](https://developer.apple.com/library/archive/samplecode/STUCAuthoringDeviceCocoaSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009061) | [macOS](https://developer.apple.com/library/archive/samplecode/STUCAuthoringDeviceCocoaSample/STUCAuthoringDeviceCocoaSample.zip) | 2009-07-24 | | [STUCAuthoringDeviceTool](https://developer.apple.com/library/archive/samplecode/STUCAuthoringDeviceTool/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009062) | [macOS](https://developer.apple.com/library/archive/samplecode/STUCAuthoringDeviceTool/STUCAuthoringDeviceTool.zip) | 2009-07-24 | | [STUCOtherDeviceTool](https://developer.apple.com/library/archive/samplecode/STUCOtherDeviceTool/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009233) | [macOS](https://developer.apple.com/library/archive/samplecode/STUCOtherDeviceTool/STUCOtherDeviceTool.zip) | 2009-09-11 | | [Sample Photo Editing Extension](https://developer.apple.com/library/archive/samplecode/SamplePhotoEditingExtension/Introduction/Intro.html#//apple_ref/doc/uid/TP40014576) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/SamplePhotoEditingExtension/SamplePhotoEditingExtension.zip) | 2016-09-13 | | [Sample Print Page Renderer](https://developer.apple.com/library/archive/samplecode/Recipes_+_Printing/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011098) | [iOS](https://developer.apple.com/library/archive/samplecode/Recipes_+_Printing/Recipes_+_Printing.zip) | 2014-02-03 | | [Sample Signed PCI Driver](https://developer.apple.com/library/archive/samplecode/AppleSamplePCI/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007810) | [macOS](https://developer.apple.com/library/archive/samplecode/AppleSamplePCI/AppleSamplePCI.zip) | 2013-06-06 | | [SampleAudioUnits](https://developer.apple.com/library/archive/samplecode/SampleAUs/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008640) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleAUs/SampleAUs.zip) | 2012-10-10 | | [SampleButtonPlugin](https://developer.apple.com/library/archive/samplecode/SampleButtonPlugin/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000656) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleButtonPlugin/SampleButtonPlugin.zip) | 2003-07-10 | | [SampleCMPlugIn](https://developer.apple.com/library/archive/samplecode/SampleCMPlugIn/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000608) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleCMPlugIn/SampleCMPlugIn.zip) | 2006-10-09 | | [SampleD](https://developer.apple.com/library/archive/samplecode/SampleD/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003653) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleD/SampleD.zip) | 2005-10-27 | | [SampleDS](https://developer.apple.com/library/archive/samplecode/SampleDS/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000657) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleDS/SampleDS.zip) | 2003-07-10 | | [SampleDriverPlugIn](https://developer.apple.com/library/archive/samplecode/SampleDriverPlugIn/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008642) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleDriverPlugIn/SampleDriverPlugIn.zip) | 2009-04-15 | | [SampleFilterScheme](https://developer.apple.com/library/archive/samplecode/SampleFilterScheme/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000432) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleFilterScheme/SampleFilterScheme.zip) | 2006-01-03 | | [SampleHardwarePlugIn](https://developer.apple.com/library/archive/samplecode/SampleHardwarePlugIn/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008643) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleHardwarePlugIn/SampleHardwarePlugIn.zip) | 2009-04-15 | | [SampleRaster](https://developer.apple.com/library/archive/samplecode/SampleRaster/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009295) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleRaster/SampleRaster.zip) | 2011-09-06 | | [SampleRateAvail](https://developer.apple.com/library/archive/samplecode/SampleRateAvail/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000369) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleRateAvail/SampleRateAvail.zip) | 2003-03-14 | | [SampleScannerApp](https://developer.apple.com/library/archive/samplecode/SampleScannerApp/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007644) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleScannerApp/SampleScannerApp.zip) | 2008-05-07 | | [SampleSndPlay](https://developer.apple.com/library/archive/samplecode/SampleSndPlay/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000350) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleSndPlay/SampleSndPlay.zip) | 2003-01-14 | | [SampleUSBAudioOverrideDriver](https://developer.apple.com/library/archive/samplecode/SampleUSBAudioOverrideDriver/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009110) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleUSBAudioOverrideDriver/SampleUSBAudioOverrideDriver.zip) | 2013-06-03 | | [SampleUSBAudioPlugin](https://developer.apple.com/library/archive/samplecode/SampleUSBAudioPlugin/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003471) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleUSBAudioPlugin/SampleUSBAudioPlugin.zip) | 2013-08-26 | | [SampleUSBMIDIDriver](https://developer.apple.com/library/archive/samplecode/SampleUSBMIDIDriver/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008412) | [macOS](https://developer.apple.com/library/archive/samplecode/SampleUSBMIDIDriver/SampleUSBMIDIDriver.zip) | 2009-03-18 | | [Sampler Unit Presets (LoadPresetDemo)](https://developer.apple.com/library/archive/samplecode/LoadPresetDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011214) | [iOS](https://developer.apple.com/library/archive/samplecode/LoadPresetDemo/LoadPresetDemo.zip) | 2011-10-12 | | [SandboxedFetch](https://developer.apple.com/library/archive/samplecode/SandboxedFetch/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011117) | [macOS](https://developer.apple.com/library/archive/samplecode/SandboxedFetch/SandboxedFetch.zip) | 2011-07-11 | | [Sandboxing with NSXPCConnection](https://developer.apple.com/library/archive/samplecode/SandboxingAndNSXPCConnection/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012665) | [macOS](https://developer.apple.com/library/archive/samplecode/SandboxingAndNSXPCConnection/SandboxingAndNSXPCConnection.zip) | 2012-08-21 | | [Save PICT file](https://developer.apple.com/library/archive/samplecode/Save_PICT_file/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000163) | [macOS](https://developer.apple.com/library/archive/samplecode/Save_PICT_file/Save_PICT_file.zip) | 2003-10-10 | | [Save Print Record](https://developer.apple.com/library/archive/samplecode/Save_Print_Record/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000303) | [macOS](https://developer.apple.com/library/archive/samplecode/Save_Print_Record/Save_Print_Record.zip) | 2003-01-14 | | [SayIt](https://developer.apple.com/library/archive/samplecode/SayIt/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004048) | [macOS](https://developer.apple.com/library/archive/samplecode/SayIt/SayIt.zip) | 2006-08-04 | | [Scalable PostScript PICT](https://developer.apple.com/library/archive/samplecode/Scalable_PostScript_PICT/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000304) | [macOS](https://developer.apple.com/library/archive/samplecode/Scalable_PostScript_PICT/Scalable_PostScript_PICT.zip) | 2003-01-14 | | [ScannerBrowser](https://developer.apple.com/library/archive/samplecode/ScannerBrowser/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008915) | [macOS](https://developer.apple.com/library/archive/samplecode/ScannerBrowser/ScannerBrowser.zip) | 2012-08-31 | | [Scene Kit Document Viewer](https://developer.apple.com/library/archive/samplecode/SceneKitDocumentViewer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012309) | [macOS](https://developer.apple.com/library/archive/samplecode/SceneKitDocumentViewer/SceneKitDocumentViewer.zip) | 2012-08-01 | | [SceneKit Animations](https://developer.apple.com/library/archive/samplecode/SceneKitAnimations/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012569) | [macOS](https://developer.apple.com/library/archive/samplecode/SceneKitAnimations/SceneKitAnimations.zip) | 2012-08-31 | | [SceneKit Material Editor](https://developer.apple.com/library/archive/samplecode/SceneKitMaterialEditor/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012570) | [macOS](https://developer.apple.com/library/archive/samplecode/SceneKitMaterialEditor/SceneKitMaterialEditor.zip) | 2012-07-31 | | [SceneKit State of the Union Demo](https://developer.apple.com/library/archive/samplecode/SceneKitReel/Introduction/Intro.html#//apple_ref/doc/uid/TP40014550) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/SceneKitStateoftheUnionDemo/SceneKitStateoftheUnionDemo.zip) | 2017-03-09 | | [SceneKit Vehicle Demo](https://developer.apple.com/library/archive/samplecode/SceneKitVehicle/Introduction/Intro.html#//apple_ref/doc/uid/TP40014549) | [iOS](https://developer.apple.com/library/archive/samplecode/SceneKitVehicleDemo/SceneKitVehicleDemo.zip) | 2014-09-17 | | [SceneKit slides for WWDC 2014 ](https://developer.apple.com/library/archive/samplecode/SceneKitWWDC2014/Introduction/Intro.html#//apple_ref/doc/uid/TP40014551) | [macOS](https://developer.apple.com/library/archive/samplecode/SceneKitslidesforWWDC2014/SceneKitslidesforWWDC2014.zip) | 2014-10-16 | | [SceneKit's presentation for WWDC2013](https://developer.apple.com/library/archive/samplecode/SceneKit_Slides_WWDC2013/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013423) | [macOS](https://developer.apple.com/library/archive/samplecode/SceneKit_Slides_WWDC2013/SceneKit_Slides_WWDC2013.zip) | 2014-01-07 | | [Scoreboard: A demonstration of RTL support on macOS using NSStackView and localizedStringWithFormat](https://developer.apple.com/library/archive/samplecode/Scoreboard/Introduction/Intro.html#//apple_ref/doc/uid/TP40017507) | [macOS](https://developer.apple.com/library/archive/samplecode/ScoreboardAdemonstrationofRTLsupportonmacOSusingNSStackViewandlocalizedStringWithFormat/ScoreboardAdemonstrationofRTLsupportonmacOSusingNSStackViewandlocalizedStringWithFormat.zip) | 2016-10-27 | | [Scrap Parsing](https://developer.apple.com/library/archive/samplecode/Scrap_Parsing/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000609) | [macOS](https://developer.apple.com/library/archive/samplecode/Scrap_Parsing/Scrap_Parsing.zip) | 2003-01-30 | | [ScreenDump](https://developer.apple.com/library/archive/samplecode/ScreenDump/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000164) | [macOS](https://developer.apple.com/library/archive/samplecode/ScreenDump/ScreenDump.zip) | 2003-03-12 | | [ScreenFKey](https://developer.apple.com/library/archive/samplecode/ScreenFKey/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000147) | [macOS](https://developer.apple.com/library/archive/samplecode/ScreenFKey/ScreenFKey.zip) | 2003-01-14 | | [ScreenSnapshot](https://developer.apple.com/library/archive/samplecode/ScreenSnapshot/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011158) | [macOS](https://developer.apple.com/library/archive/samplecode/ScreenSnapshot/ScreenSnapshot.zip) | 2011-07-19 | | [ScriptView](https://developer.apple.com/library/archive/samplecode/ScriptView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003721) | [Xcode Developer Tools](https://developer.apple.com/library/archive/samplecode/ScriptView/ScriptView.zip) | 2005-06-01 | | [Scriptable Print SimpleText](https://developer.apple.com/library/archive/samplecode/Scriptable_Print_SimpleText/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000305) | [macOS](https://developer.apple.com/library/archive/samplecode/Scriptable_Print_SimpleText/Scriptable_Print_SimpleText.zip) | 2003-03-26 | | [ScriptingBridgeFinder](https://developer.apple.com/library/archive/samplecode/ScriptingBridgeFinder/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004283) | [macOS](https://developer.apple.com/library/archive/samplecode/ScriptingBridgeFinder/ScriptingBridgeFinder.zip) | 2011-08-05 | | [ScriptingBridgeiCal](https://developer.apple.com/library/archive/samplecode/ScriptingBridgeiCal/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004536) | [macOS](https://developer.apple.com/library/archive/samplecode/ScriptingBridgeiCal/ScriptingBridgeiCal.zip) | 2011-08-17 | | [ScriptingDefinitions](https://developer.apple.com/library/archive/samplecode/ScriptingDefinitions/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003718) | [macOS](https://developer.apple.com/library/archive/samplecode/ScriptingDefinitions/ScriptingDefinitions.zip) | 2008-05-30 | | [ScrollAndZoom](https://developer.apple.com/library/archive/samplecode/ScrollAndZoom/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003434) | [macOS](https://developer.apple.com/library/archive/samplecode/ScrollAndZoom/ScrollAndZoom.zip) | 2005-08-10 | | [ScrollViewSuite](https://developer.apple.com/library/archive/samplecode/ScrollViewSuite/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008904) | [iOS](https://developer.apple.com/library/archive/samplecode/ScrollViewSuite/ScrollViewSuite.zip) | 2010-10-20 | | [Scrolling](https://developer.apple.com/library/archive/samplecode/Scrolling/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008023) | [iOS](https://developer.apple.com/library/archive/samplecode/Scrolling/Scrolling.zip) | 2010-06-23 | | [SearchField](https://developer.apple.com/library/archive/samplecode/SearchField/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004112) | [macOS](https://developer.apple.com/library/archive/samplecode/SearchField/SearchField.zip) | 2015-06-25 | | [SeeMyFriends](https://developer.apple.com/library/archive/samplecode/SeeMyFriends/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003683) | [macOS](https://developer.apple.com/library/archive/samplecode/SeeMyFriends/SeeMyFriends.zip) | 2006-10-16 | | [SeedCFill](https://developer.apple.com/library/archive/samplecode/SeedCFill/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000166) | [macOS](https://developer.apple.com/library/archive/samplecode/SeedCFill/SeedCFill.zip) | 2003-10-27 | | [SegmentView](https://developer.apple.com/library/archive/samplecode/SegmentView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000644) | [macOS](https://developer.apple.com/library/archive/samplecode/SegmentView/SegmentView.zip) | 2003-01-30 | | [SegueCatalog: Customizing and Unwinding with View Controller Containment](https://developer.apple.com/library/archive/samplecode/SegueCatalog/Introduction/Intro.html#//apple_ref/doc/uid/TP40016213) | [iOS](https://developer.apple.com/library/archive/samplecode/SegueCatalogCustomizingandUnwindingwithViewControllerContainment/SegueCatalogCustomizingandUnwindingwithViewControllerContainment.zip) | 2016-10-04 | | [SeismicXML: Using NSXMLParser to parse XML documents](https://developer.apple.com/library/archive/samplecode/SeismicXML/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007323) | [iOS](https://developer.apple.com/library/archive/samplecode/SeismicXMLUsingNSXMLParsertoparseXMLdocuments/SeismicXMLUsingNSXMLParsertoparseXMLdocuments.zip) | 2016-01-08 | | [Serial Demo](https://developer.apple.com/library/archive/samplecode/Serial_Demo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000028) | [macOS](https://developer.apple.com/library/archive/samplecode/Serial_Demo/Serial_Demo.zip) | 2003-01-14 | | [SerialDriverArbitration](https://developer.apple.com/library/archive/samplecode/SerialDriverArbitration/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000453) | [macOS](https://developer.apple.com/library/archive/samplecode/SerialDriverArbitration/SerialDriverArbitration.zip) | 2003-01-14 | | [Server Remote Control](https://developer.apple.com/library/archive/samplecode/Server_Remote_Control/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000211) | [macOS](https://developer.apple.com/library/archive/samplecode/Server_Remote_Control/Server_Remote_Control.zip) | 2003-03-14 | | [Set Folder Windows](https://developer.apple.com/library/archive/samplecode/Set_Folder_Windows/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000673) | [macOS](https://developer.apple.com/library/archive/samplecode/Set_Folder_Windows/Set_Folder_Windows.zip) | 2003-01-14 | | [SetCustomIcon](https://developer.apple.com/library/archive/samplecode/SetCustomIcon/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003477) | [macOS](https://developer.apple.com/library/archive/samplecode/SetCustomIcon/SetCustomIcon.zip) | 2006-08-01 | | [SetDeskCPatDemo](https://developer.apple.com/library/archive/samplecode/SetDeskCPatDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000167) | [macOS](https://developer.apple.com/library/archive/samplecode/SetDeskCPatDemo/SetDeskCPatDemo.zip) | 2003-07-22 | | [SetIndString](https://developer.apple.com/library/archive/samplecode/SetIndString/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000611) | [macOS](https://developer.apple.com/library/archive/samplecode/SetIndString/SetIndString.zip) | 2003-01-30 | | [SetMouseAcclSample](https://developer.apple.com/library/archive/samplecode/SetMouseAcclSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003957) | [macOS](https://developer.apple.com/library/archive/samplecode/SetMouseAcclSample/SetMouseAcclSample.zip) | 2006-11-28 | | [SetPDiMC](https://developer.apple.com/library/archive/samplecode/SetPDiMC/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000306) | [macOS](https://developer.apple.com/library/archive/samplecode/SetPDiMC/SetPDiMC.zip) | 2003-01-14 | | [SetSoundInput](https://developer.apple.com/library/archive/samplecode/SetSoundInput/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000351) | [macOS](https://developer.apple.com/library/archive/samplecode/SetSoundInput/SetSoundInput.zip) | 2003-01-14 | | [SetWindBackColor](https://developer.apple.com/library/archive/samplecode/SetWindBackColor/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000612) | [macOS](https://developer.apple.com/library/archive/samplecode/SetWindBackColor/SetWindBackColor.zip) | 2003-01-30 | | [SettingUpStdFile](https://developer.apple.com/library/archive/samplecode/SettingUpStdFile/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000047) | [macOS](https://developer.apple.com/library/archive/samplecode/SettingUpStdFile/SettingUpStdFile.zip) | 2003-03-13 | | [ShadingWinds](https://developer.apple.com/library/archive/samplecode/ShadingWinds/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000613) | [macOS](https://developer.apple.com/library/archive/samplecode/ShadingWinds/ShadingWinds.zip) | 2003-01-30 | | [ShapeEdit: Building a Simple iCloud Document App](https://developer.apple.com/library/archive/samplecode/ShapeEdit/Introduction/Intro.html#//apple_ref/doc/uid/TP40016100) | [iOS](https://developer.apple.com/library/archive/samplecode/ShapeEditBuildingaSimpleiCloudDocumentApp/ShapeEditBuildingaSimpleiCloudDocumentApp.zip) | 2016-09-13 | | [SharedMemory](https://developer.apple.com/library/archive/samplecode/SharedMemory/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000754) | [macOS](https://developer.apple.com/library/archive/samplecode/SharedMemory/SharedMemory.zip) | 2003-01-14 | | [SharingServices](https://developer.apple.com/library/archive/samplecode/SharingServices/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012313) | [macOS](https://developer.apple.com/library/archive/samplecode/SharingServices/SharingServices.zip) | 2013-04-03 | | [Sheets](https://developer.apple.com/library/archive/samplecode/Sheets/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000645) | [macOS](https://developer.apple.com/library/archive/samplecode/Sheets/Sheets.zip) | 2003-10-24 | | [Show Movie](https://developer.apple.com/library/archive/samplecode/Show_Movie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000792) | [macOS](https://developer.apple.com/library/archive/samplecode/Show_Movie/Show_Movie.zip) | 2003-01-14 | | [ShowInitIcon](https://developer.apple.com/library/archive/samplecode/ShowInitIcon/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000614) | [macOS](https://developer.apple.com/library/archive/samplecode/ShowInitIcon/ShowInitIcon.zip) | 2003-01-30 | | [SidebarDemo](https://developer.apple.com/library/archive/samplecode/SidebarDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010893) | [macOS](https://developer.apple.com/library/archive/samplecode/SidebarDemo/SidebarDemo.zip) | 2011-05-02 | | [SignalProcessing: Using Biquadratic Filter Functions](https://developer.apple.com/library/archive/samplecode/SignalProcessing/Introduction/Intro.html#//apple_ref/doc/uid/TP40016163) | [macOS](https://developer.apple.com/library/archive/samplecode/SignalProcessingUsingBiquadraticFilterFunctions/SignalProcessingUsingBiquadraticFilterFunctions.zip) | 2015-09-16 | | [SignatureToApp](https://developer.apple.com/library/archive/samplecode/SignatureToApp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000755) | [macOS](https://developer.apple.com/library/archive/samplecode/SignatureToApp/SignatureToApp.zip) | 2003-01-14 | | [SillyBalls](https://developer.apple.com/library/archive/samplecode/SillyBalls/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000735) | [macOS](https://developer.apple.com/library/archive/samplecode/SillyBalls/SillyBalls.zip) | 2003-01-14 | | [SillyFrequencyLevels](https://developer.apple.com/library/archive/samplecode/SillyFrequencyLevels/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003834) | [macOS](https://developer.apple.com/library/archive/samplecode/SillyFrequencyLevels/SillyFrequencyLevels.zip) | 2006-01-25 | | [Simon](https://developer.apple.com/library/archive/samplecode/Simon/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000402) | [macOS](https://developer.apple.com/library/archive/samplecode/Simon/Simon.zip) | 2003-01-14 | | [Simon Tool](https://developer.apple.com/library/archive/samplecode/Simon_Tool/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000003) | [macOS](https://developer.apple.com/library/archive/samplecode/Simon_Tool/Simon_Tool.zip) | 2003-01-14 | | [Simple AppKit](https://developer.apple.com/library/archive/samplecode/Simple_AppKit/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000168) | [macOS](https://developer.apple.com/library/archive/samplecode/Simple_AppKit/Simple_AppKit.zip) | 2003-09-30 | | [Simple Background Transfer](https://developer.apple.com/library/archive/samplecode/SimpleBackgroundTransfer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013416) | [iOS](https://developer.apple.com/library/archive/samplecode/SimpleBackgroundTransfer/SimpleBackgroundTransfer.zip) | 2013-10-01 | | [Simple Bindings Adoption](https://developer.apple.com/library/archive/samplecode/SimpleBindingsAdoption/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004326) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleBindingsAdoption/SimpleBindingsAdoption.zip) | 2014-07-08 | | [Simple Core Data Relationships](https://developer.apple.com/library/archive/samplecode/TaggedLocations/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008914) | [iOS](https://developer.apple.com/library/archive/samplecode/TaggedLocations/TaggedLocations.zip) | 2013-06-12 | | [Simple DrawSprocket](https://developer.apple.com/library/archive/samplecode/Simple_DrawSprocket/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000169) | [macOS](https://developer.apple.com/library/archive/samplecode/Simple_DrawSprocket/Simple_DrawSprocket.zip) | 2003-07-22 | | [Simple Gesture Recognizers](https://developer.apple.com/library/archive/samplecode/SimpleGestureRecognizers/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009460) | [iOS](https://developer.apple.com/library/archive/samplecode/SimpleGestureRecognizers/SimpleGestureRecognizers.zip) | 2013-01-24 | | [Simple HLE](https://developer.apple.com/library/archive/samplecode/Simple_HLE/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000212) | [macOS](https://developer.apple.com/library/archive/samplecode/Simple_HLE/Simple_HLE.zip) | 2003-01-14 | | [Simple UISearchBar with State Restoration](https://developer.apple.com/library/archive/samplecode/TableSearch/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007848) | [iOS](https://developer.apple.com/library/archive/samplecode/SimpleUISearchBarwithStateRestoration/SimpleUISearchBarwithStateRestoration.zip) | 2013-05-23 | | [SimpleAudioExtraction](https://developer.apple.com/library/archive/samplecode/SimpleAudioExtraction/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003740) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleAudioExtraction/SimpleAudioExtraction.zip) | 2006-01-03 | | [SimpleCalendar](https://developer.apple.com/library/archive/samplecode/SimpleCalendar/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003991) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleCalendar/SimpleCalendar.zip) | 2006-07-27 | | [SimpleCameraBrowser](https://developer.apple.com/library/archive/samplecode/SimpleCameraBrowser/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009232) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleCameraBrowser/SimpleCameraBrowser.zip) | 2012-08-29 | | [SimpleCarbonAppleScript](https://developer.apple.com/library/archive/samplecode/SimpleCarbonAppleScript/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003512) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleCarbonAppleScript/SimpleCarbonAppleScript.zip) | 2007-03-01 | | [SimpleCocoaApp](https://developer.apple.com/library/archive/samplecode/SimpleCocoaApp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000403) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleCocoaApp/SimpleCocoaApp.zip) | 2012-03-20 | | [SimpleCocoaBrowser: Using NSBrowser class](https://developer.apple.com/library/archive/samplecode/SimpleCocoaBrowser/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008872) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleCocoaBrowserUsingNSBrowserclass/SimpleCocoaBrowserUsingNSBrowserclass.zip) | 2016-04-29 | | [SimpleCocoaJavaMovie](https://developer.apple.com/library/archive/samplecode/SimpleCocoaJavaMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000793) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleCocoaJavaMovie/SimpleCocoaJavaMovie.zip) | 2003-01-14 | | [SimpleCocoaJavaMovieCocoa](https://developer.apple.com/library/archive/samplecode/SimpleCocoaJavaMovieCocoa/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000404) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleCocoaJavaMovieCocoa/SimpleCocoaJavaMovieCocoa.zip) | 2003-01-14 | | [SimpleCocoaMovie](https://developer.apple.com/library/archive/samplecode/SimpleCocoaMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000405) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleCocoaMovie/SimpleCocoaMovie.zip) | 2003-01-14 | | [SimpleCocoaMovieQT](https://developer.apple.com/library/archive/samplecode/SimpleCocoaMovieQT/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000794) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleCocoaMovieQT/SimpleCocoaMovieQT.zip) | 2003-01-14 | | [SimpleComboBox](https://developer.apple.com/library/archive/samplecode/SimpleComboBox/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008873) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleComboBox/SimpleComboBox.zip) | 2012-06-05 | | [SimpleDataQueue](https://developer.apple.com/library/archive/samplecode/SimpleDataQueue/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000449) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleDataQueue/SimpleDataQueue.zip) | 2003-01-14 | | [SimpleDial](https://developer.apple.com/library/archive/samplecode/SimpleDial/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003237) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleDial/SimpleDial.zip) | 2005-07-26 | | [SimpleDownload](https://developer.apple.com/library/archive/samplecode/SimpleDownload/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000658) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleDownload/SimpleDownload.zip) | 2003-01-14 | | [SimpleDrillDown](https://developer.apple.com/library/archive/samplecode/SimpleDrillDown/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007416) | [iOS](https://developer.apple.com/library/archive/samplecode/SimpleDrillDown/SimpleDrillDown.zip) | 2012-02-28 | | [SimpleEKDemo](https://developer.apple.com/library/archive/samplecode/SimpleEKDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010160) | [iOS](https://developer.apple.com/library/archive/samplecode/SimpleEKDemo/SimpleEKDemo.zip) | 2015-09-16 | | [SimpleFTPSample](https://developer.apple.com/library/archive/samplecode/SimpleFTPSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009243) | [iOS](https://developer.apple.com/library/archive/samplecode/SimpleFTPSample/SimpleFTPSample.zip) | 2013-04-12 | | [SimpleHIMovieViewPlayer](https://developer.apple.com/library/archive/samplecode/SimpleHIMovieViewPlayer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003662) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleHIMovieViewPlayer/SimpleHIMovieViewPlayer.zip) | 2005-07-15 | | [SimpleHelp](https://developer.apple.com/library/archive/samplecode/SimpleHelp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000179) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleHelp/SimpleHelp.zip) | 2003-01-14 | | [SimpleImageFilter](https://developer.apple.com/library/archive/samplecode/SimpleImageFilter/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008837) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleImageFilter/SimpleImageFilter.zip) | 2009-05-26 | | [SimpleList](https://developer.apple.com/library/archive/samplecode/SimpleList/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000616) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleList/SimpleList.zip) | 2003-01-30 | | [SimpleNetworkStreams](https://developer.apple.com/library/archive/samplecode/SimpleNetworkStreams/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008979) | [iOS](https://developer.apple.com/library/archive/samplecode/SimpleNetworkStreams/SimpleNetworkStreams.zip) | 2012-05-09 | | [SimplePing](https://developer.apple.com/library/archive/samplecode/SimplePing/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000716) | [macOS](https://developer.apple.com/library/archive/samplecode/SimplePing/SimplePing.zip) | 2016-05-05 | | [SimpleReach](https://developer.apple.com/library/archive/samplecode/SimpleReach/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003238) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleReach/SimpleReach.zip) | 2005-07-26 | | [SimpleScripting](https://developer.apple.com/library/archive/samplecode/SimpleScripting/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004238) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleScripting/SimpleScripting.zip) | 2011-09-07 | | [SimpleScriptingObjects](https://developer.apple.com/library/archive/samplecode/SimpleScriptingObjects/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004244) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleScriptingObjects/SimpleScriptingObjects.zip) | 2011-09-07 | | [SimpleScriptingPlugin](https://developer.apple.com/library/archive/samplecode/SimpleScriptingPlugin/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008783) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleScriptingPlugin/SimpleScriptingPlugin.zip) | 2009-05-11 | | [SimpleScriptingProperties](https://developer.apple.com/library/archive/samplecode/SimpleScriptingProperties/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004240) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleScriptingProperties/SimpleScriptingProperties.zip) | 2011-09-07 | | [SimpleScriptingVerbs](https://developer.apple.com/library/archive/samplecode/SimpleScriptingVerbs/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004239) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleScriptingVerbs/SimpleScriptingVerbs.zip) | 2011-09-07 | | [SimpleService](https://developer.apple.com/library/archive/samplecode/SimpleService/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012287) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleService/SimpleService.zip) | 2012-05-30 | | [SimpleSpeechRecExample](https://developer.apple.com/library/archive/samplecode/SimpleSpeechRecExample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001090) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleSpeechRecExample/SimpleSpeechRecExample.zip) | 2003-03-26 | | [SimpleStickies](https://developer.apple.com/library/archive/samplecode/SyncServices_SimpleStickies/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009051) | [macOS](https://developer.apple.com/library/archive/samplecode/SyncServices_SimpleStickies/SyncServices_SimpleStickies.zip) | 2009-10-14 | | [SimpleStocks](https://developer.apple.com/library/archive/samplecode/SimpleStocks/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011103) | [iOS](https://developer.apple.com/library/archive/samplecode/SimpleStocks/SimpleStocks.zip) | 2013-04-03 | | [SimpleTabControl](https://developer.apple.com/library/archive/samplecode/SimpleTabControl/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000617) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleTabControl/SimpleTabControl.zip) | 2003-02-20 | | [SimpleTemperatureConverter](https://developer.apple.com/library/archive/samplecode/SimpleTemperatureConverter/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008813) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleTemperatureConverter/SimpleTemperatureConverter.zip) | 2012-06-05 | | [SimpleText Sample](https://developer.apple.com/library/archive/samplecode/SimpleText_Sample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000736) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleText_Sample/SimpleText_Sample.zip) | 2003-01-14 | | [SimpleTextInput](https://developer.apple.com/library/archive/samplecode/SimpleTextInput/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010633) | [iOS](https://developer.apple.com/library/archive/samplecode/SimpleTextInput/SimpleTextInput.zip) | 2013-05-16 | | [SimpleThreads](https://developer.apple.com/library/archive/samplecode/SimpleThreads/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000756) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleThreads/SimpleThreads.zip) | 2003-01-14 | | [SimpleToolbar](https://developer.apple.com/library/archive/samplecode/SimpleToolbar/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008817) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleToolbar/SimpleToolbar.zip) | 2012-06-05 | | [SimpleTunnel: Customized Networking Using the NetworkExtension Framework](https://developer.apple.com/library/archive/samplecode/SimpleTunnel/Introduction/Intro.html#//apple_ref/doc/uid/TP40016140) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/SimpleTunnelCustomizedNetworkingUsingtheNetworkExtensionFramework/SimpleTunnelCustomizedNetworkingUsingtheNetworkExtensionFramework.zip) | 2016-10-04 | | [SimpleURLConnections](https://developer.apple.com/library/archive/samplecode/SimpleURLConnections/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009245) | [iOS](https://developer.apple.com/library/archive/samplecode/SimpleURLConnections/SimpleURLConnections.zip) | 2012-04-11 | | [SimpleUndo](https://developer.apple.com/library/archive/samplecode/SimpleUndo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008408) | [iOS](https://developer.apple.com/library/archive/samplecode/SimpleUndo/SimpleUndo.zip) | 2013-05-03 | | [SimpleUserClient](https://developer.apple.com/library/archive/samplecode/SimpleUserClient/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000450) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleUserClient/SimpleUserClient.zip) | 2008-08-27 | | [SimpleVideoOut](https://developer.apple.com/library/archive/samplecode/SimpleVideoOut/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000809) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleVideoOut/SimpleVideoOut.zip) | 2010-11-08 | | [SimpleViewer](https://developer.apple.com/library/archive/samplecode/SimpleViewer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000126) | [macOS](https://developer.apple.com/library/archive/samplecode/SimpleViewer/SimpleViewer.zip) | 2003-01-14 | | [Simplest Viewer App](https://developer.apple.com/library/archive/samplecode/Simplest_Viewer_App/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000125) | [macOS](https://developer.apple.com/library/archive/samplecode/Simplest_Viewer_App/Simplest_Viewer_App.zip) | 2003-01-14 | | [Sketch](https://developer.apple.com/library/archive/samplecode/Sketch/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011772) | [macOS](https://developer.apple.com/library/archive/samplecode/Sketch/Sketch.zip) | 2012-08-14 | | [Sketch+Accessibility](https://developer.apple.com/library/archive/samplecode/Sketch+Accessibility/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008920) | [macOS](https://developer.apple.com/library/archive/samplecode/Sketch+Accessibility/Sketch+Accessibility.zip) | 2009-07-14 | | [Skinny3DSample](https://developer.apple.com/library/archive/samplecode/Skinny3DSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000104) | [macOS](https://developer.apple.com/library/archive/samplecode/Skinny3DSample/Skinny3DSample.zip) | 2003-01-14 | | [SkyCreator](https://developer.apple.com/library/archive/samplecode/SkyCreator/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003668) | [macOS](https://developer.apple.com/library/archive/samplecode/SkyCreator/SkyCreator.zip) | 2006-04-12 | | [Sleep Queue Entry](https://developer.apple.com/library/archive/samplecode/Sleep_Queue_Entry/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000019) | [macOS](https://developer.apple.com/library/archive/samplecode/Sleep_Queue_Entry/Sleep_Queue_Entry.zip) | 2003-01-14 | | [SlideShowImporter](https://developer.apple.com/library/archive/samplecode/SlideShowImporter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000901) | [macOS](https://developer.apple.com/library/archive/samplecode/SlideShowImporter/SlideShowImporter.zip) | 2003-01-14 | | [SlideShowImporter.win](https://developer.apple.com/library/archive/samplecode/SlideShowImporter.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000902) | [macOS](https://developer.apple.com/library/archive/samplecode/SlideShowImporter/SlideShowImporter.win.zip) | 2003-01-14 | | [SlideShowJava](https://developer.apple.com/library/archive/samplecode/SlideShowJava/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000993) | [macOS](https://developer.apple.com/library/archive/samplecode/SlideShowJava/SlideShowJava.zip) | 2003-01-14 | | [SlotVInstall](https://developer.apple.com/library/archive/samplecode/SlotVInstall/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000020) | [macOS](https://developer.apple.com/library/archive/samplecode/SlotVInstall/SlotVInstall.zip) | 2003-01-14 | | [SmallDaemon](https://developer.apple.com/library/archive/samplecode/SmallDaemon/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000213) | [macOS](https://developer.apple.com/library/archive/samplecode/SmallDaemon/SmallDaemon.zip) | 2003-01-14 | | [Snapshot](https://developer.apple.com/library/archive/samplecode/Snapshot/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000170) | [macOS](https://developer.apple.com/library/archive/samplecode/Snapshot/Snapshot.zip) | 2003-10-10 | | [SnapshotSample](https://developer.apple.com/library/archive/samplecode/SnapshotSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000214) | [macOS](https://developer.apple.com/library/archive/samplecode/SnapshotSample/SnapshotSample.zip) | 2003-03-17 | | [SndForEver](https://developer.apple.com/library/archive/samplecode/SndForEver/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000370) | [macOS](https://developer.apple.com/library/archive/samplecode/SndForEver/SndForEver.zip) | 2003-03-14 | | [SndPlayDoubleBuffer](https://developer.apple.com/library/archive/samplecode/SndPlayDoubleBuffer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000371) | [macOS](https://developer.apple.com/library/archive/samplecode/SndPlayDoubleBuffer/SndPlayDoubleBuffer.zip) | 2003-03-14 | | [SocketCancel](https://developer.apple.com/library/archive/samplecode/SocketCancel/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000717) | [macOS](https://developer.apple.com/library/archive/samplecode/SocketCancel/SocketCancel.zip) | 2005-08-10 | | [SoftVideoOutputComponent](https://developer.apple.com/library/archive/samplecode/SoftVideoOutputComponent/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000811) | [macOS](https://developer.apple.com/library/archive/samplecode/SoftVideoOutputComponent/SoftVideoOutputComponent.zip) | 2005-08-10 | | [Son of Grab](https://developer.apple.com/library/archive/samplecode/SonOfGrab/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004490) | [macOS](https://developer.apple.com/library/archive/samplecode/SonofGrab/SonofGrab.zip) | 2015-05-18 | | [SonOfSillyBalls](https://developer.apple.com/library/archive/samplecode/SonOfSillyBalls/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000406) | [macOS](https://developer.apple.com/library/archive/samplecode/SonOfSillyBalls/SonOfSillyBalls.zip) | 2011-05-13 | | [SonogramViewDemo](https://developer.apple.com/library/archive/samplecode/SonogramViewDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008647) | [macOS](https://developer.apple.com/library/archive/samplecode/SonogramViewDemo/SonogramViewDemo.zip) | 2012-01-24 | | [Sound Input](https://developer.apple.com/library/archive/samplecode/Sound_Input/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000352) | [macOS](https://developer.apple.com/library/archive/samplecode/Sound_Input/Sound_Input.zip) | 2003-01-14 | | [Sound PreMixer effect](https://developer.apple.com/library/archive/samplecode/Sound_PreMixer_effect/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000919) | [macOS](https://developer.apple.com/library/archive/samplecode/Sound_PreMixer_effect/Sound_PreMixer_effect.zip) | 2003-03-14 | | [SoundApp](https://developer.apple.com/library/archive/samplecode/SoundApp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000372) | [macOS](https://developer.apple.com/library/archive/samplecode/SoundApp/SoundApp.zip) | 2003-03-14 | | [SoundLevel](https://developer.apple.com/library/archive/samplecode/SoundLevel/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000373) | [macOS](https://developer.apple.com/library/archive/samplecode/SoundLevel/SoundLevel.zip) | 2003-03-14 | | [SoundMemRecord](https://developer.apple.com/library/archive/samplecode/SoundMemRecord/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000995) | [macOS](https://developer.apple.com/library/archive/samplecode/SoundMemRecord/SoundMemRecord.zip) | 2006-05-05 | | [SoundMeter](https://developer.apple.com/library/archive/samplecode/SoundMeter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000997) | [macOS](https://developer.apple.com/library/archive/samplecode/SoundMeter/SoundMeter.zip) | 2003-01-14 | | [SoundPlayer](https://developer.apple.com/library/archive/samplecode/SoundPlayer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000922) | [macOS](https://developer.apple.com/library/archive/samplecode/SoundPlayer/SoundPlayer.zip) | 2003-01-14 | | [SoundPlayer.win](https://developer.apple.com/library/archive/samplecode/SoundPlayer.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000923) | [macOS](https://developer.apple.com/library/archive/samplecode/SoundPlayer/SoundPlayer.win.zip) | 2003-01-14 | | [SoundRecord](https://developer.apple.com/library/archive/samplecode/SoundRecord/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000998) | [macOS](https://developer.apple.com/library/archive/samplecode/SoundRecord/SoundRecord.zip) | 2006-05-05 | | [SoundSprocketTest](https://developer.apple.com/library/archive/samplecode/SoundSprocketTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000060) | [macOS](https://developer.apple.com/library/archive/samplecode/SoundSprocketTest/SoundSprocketTest.zip) | 2003-10-14 | | [Soundboard](https://developer.apple.com/library/archive/samplecode/Soundboard/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000059) | [macOS](https://developer.apple.com/library/archive/samplecode/Soundboard/Soundboard.zip) | 2003-01-14 | | [SourceView: Using NSOutlineView with NSTreeController](https://developer.apple.com/library/archive/samplecode/SourceView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004441) | [macOS](https://developer.apple.com/library/archive/samplecode/SourceViewUsingNSOutlineViewwithNSTreeController/SourceViewUsingNSOutlineViewwithNSTreeController.zip) | 2018-02-15 | | [Space Tours iAd](https://developer.apple.com/library/archive/samplecode/SpaceTours/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010222) | [iAd Producer\|iOS](https://developer.apple.com/library/archive/samplecode/SpaceTours/SpaceTours.zip) | 2011-03-08 | | [SpeakToMe: Using Speech Recognition with AVAudioEngine](https://developer.apple.com/library/archive/samplecode/SpeakToMe/Introduction/Intro.html#//apple_ref/doc/uid/TP40017110) | [iOS](https://developer.apple.com/library/archive/samplecode/SpeakToMeUsingSpeechRecognitionwithAVAudioEngine/SpeakToMeUsingSpeechRecognitionwithAVAudioEngine.zip) | 2016-09-13 | | [SpecialPictureProtocol](https://developer.apple.com/library/archive/samplecode/SpecialPictureProtocol/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003816) | [macOS](https://developer.apple.com/library/archive/samplecode/SpecialPictureProtocol/SpecialPictureProtocol.zip) | 2011-07-11 | | [Speech Recognition Sample](https://developer.apple.com/library/archive/samplecode/Speech_Recognition_Sample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000374) | [macOS](https://developer.apple.com/library/archive/samplecode/Speech_Recognition_Sample/Speech_Recognition_Sample.zip) | 2003-03-14 | | [SpeedSketch: Leveraging touch input for a drawing application](https://developer.apple.com/library/archive/samplecode/SpeedSketch/Introduction/Intro.html#//apple_ref/doc/uid/TP40017333) | [iOS](https://developer.apple.com/library/archive/samplecode/SpeedSketchLeveragingtouchinputforadrawingapplication/SpeedSketchLeveragingtouchinputforadrawingapplication.zip) | 2016-09-29 | | [SpeedometerView](https://developer.apple.com/library/archive/samplecode/SpeedometerView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004345) | [macOS](https://developer.apple.com/library/archive/samplecode/SpeedometerView/SpeedometerView.zip) | 2012-05-31 | | [SpeedySloth: Using HealthKit to build a workout app for Apple Watch](https://developer.apple.com/library/archive/samplecode/SpeedySloth/Introduction/Intro.html#//apple_ref/doc/uid/TP40017338) | [watchOS](https://developer.apple.com/library/archive/samplecode/SpeedySlothUsingHealthKittobuildaworkoutappforAppleWatch/SpeedySlothUsingHealthKittobuildaworkoutappforAppleWatch.zip) | 2016-10-04 | | [SpellingChecker CarbonCocoa Bundled](https://developer.apple.com/library/archive/samplecode/SpellingChecker-CarbonCocoa-Bundled/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003361) | [macOS](https://developer.apple.com/library/archive/samplecode/SpellingChecker-CarbonCocoa-Bundled/SpellingChecker-CarbonCocoa-Bundled.zip) | 2004-08-17 | | [SpellingChecker-CarbonCocoa](https://developer.apple.com/library/archive/samplecode/SpellingChecker-CarbonCocoa/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000727) | [macOS](https://developer.apple.com/library/archive/samplecode/SpellingChecker-CarbonCocoa/SpellingChecker-CarbonCocoa.zip) | 2003-01-14 | | [SpellingChecker-CocoaCarbon](https://developer.apple.com/library/archive/samplecode/SpellingChecker-CocoaCarbon/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003341) | [macOS](https://developer.apple.com/library/archive/samplecode/SpellingChecker-CocoaCarbon/SpellingChecker-CocoaCarbon.zip) | 2005-08-10 | | [Splasher](https://developer.apple.com/library/archive/samplecode/Splasher/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000618) | [macOS](https://developer.apple.com/library/archive/samplecode/Splasher/Splasher.zip) | 2003-01-30 | | [SplitView](https://developer.apple.com/library/archive/samplecode/SplitView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000646) | [macOS](https://developer.apple.com/library/archive/samplecode/SplitView/SplitView.zip) | 2003-01-30 | | [SplitViews: Using NSSplitView in a variety of different ways](https://developer.apple.com/library/archive/samplecode/SplitViews/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011336) | [macOS](https://developer.apple.com/library/archive/samplecode/SplitViewsUsingNSSplitViewinavarietyofdifferentways/SplitViewsUsingNSSplitViewinavarietyofdifferentways.zip) | 2015-12-03 | | [Spotlight](https://developer.apple.com/library/archive/samplecode/Spotlight/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003713) | [macOS](https://developer.apple.com/library/archive/samplecode/Spotlight/Spotlight.zip) | 2005-06-01 | | [SpotlightAPI](https://developer.apple.com/library/archive/samplecode/SpotlightAPI/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003627) | [macOS](https://developer.apple.com/library/archive/samplecode/SpotlightAPI/SpotlightAPI.zip) | 2005-06-01 | | [SpotlightFortunes](https://developer.apple.com/library/archive/samplecode/SpotlightFortunes/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007773) | [macOS](https://developer.apple.com/library/archive/samplecode/SpotlightFortunes/SpotlightFortunes.zip) | 2008-06-06 | | [Spotlighter](https://developer.apple.com/library/archive/samplecode/Spotlighter/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008818) | [macOS](https://developer.apple.com/library/archive/samplecode/Spotlighter/Spotlighter.zip) | 2012-06-05 | | [Sprite Tour](https://developer.apple.com/library/archive/samplecode/Sprite_Tour/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013389) | [macOS](https://developer.apple.com/library/archive/samplecode/Sprite_Tour/Sprite_Tour.zip) | 2013-06-03 | | [SpriteKit Physics Collisions](https://developer.apple.com/library/archive/samplecode/SpriteKit_Physics_Collisions/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013390) | [macOS](https://developer.apple.com/library/archive/samplecode/SpriteKit_Physics_Collisions/SpriteKit_Physics_Collisions.zip) | 2014-06-23 | | [SprocketInvadersOld](https://developer.apple.com/library/archive/samplecode/SprocketInvadersOld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000061) | [macOS](https://developer.apple.com/library/archive/samplecode/SprocketInvadersOld/SprocketInvadersOld.zip) | 2003-10-14 | | [Sproing](https://developer.apple.com/library/archive/samplecode/Sproing/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000408) | [macOS](https://developer.apple.com/library/archive/samplecode/Sproing/Sproing.zip) | 2011-08-24 | | [SquareCam](https://developer.apple.com/library/archive/samplecode/SquareCam/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011190) | [iOS](https://developer.apple.com/library/archive/samplecode/SquareCam/SquareCam.zip) | 2013-04-04 | | [SquareWave](https://developer.apple.com/library/archive/samplecode/SquareWave/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000375) | [macOS](https://developer.apple.com/library/archive/samplecode/SquareWave/SquareWave.zip) | 2003-03-14 | | [StandardGetFolder](https://developer.apple.com/library/archive/samplecode/StandardGetFolder/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000048) | [macOS](https://developer.apple.com/library/archive/samplecode/StandardGetFolder/StandardGetFolder.zip) | 2003-03-13 | | [StarMenu](https://developer.apple.com/library/archive/samplecode/StarMenu/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003588) | [macOS](https://developer.apple.com/library/archive/samplecode/StarMenu/StarMenu.zip) | 2007-05-24 | | [StarterAUEffectWithCocoaUI](https://developer.apple.com/library/archive/samplecode/StarterAUEffectWithCocoaUI/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011650) | [macOS](https://developer.apple.com/library/archive/samplecode/StarterAUEffectWithCocoaUI/StarterAUEffectWithCocoaUI.zip) | 2012-10-23 | | [StarterAudioUnitExample](https://developer.apple.com/library/archive/samplecode/TremoloUnit/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004119) | [macOS](https://developer.apple.com/library/archive/samplecode/TremoloUnit/TremoloUnit.zip) | 2012-10-16 | | [StarterPlaygroundBook: A simple Swift Playground Book](https://developer.apple.com/library/archive/samplecode/StarterPlaygroundBook/Introduction/Intro.html#//apple_ref/doc/uid/TP40017344) | [Xcode Developer Tools](https://developer.apple.com/library/archive/samplecode/StarterPlaygroundBookAsimpleSwiftPlaygroundBook/StarterPlaygroundBookAsimpleSwiftPlaygroundBook.zip) | 2018-04-30 | | [State Restoration](https://developer.apple.com/library/archive/samplecode/StateRestore/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013190) | [iOS](https://developer.apple.com/library/archive/samplecode/StateRestoration/StateRestoration.zip) | 2017-03-12 | | [State Restoration of Child View Controllers](https://developer.apple.com/library/archive/samplecode/StateRestoreChildViews/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013492) | [iOS](https://developer.apple.com/library/archive/samplecode/StateRestoreChildViews/StateRestoreChildViews.zip) | 2013-09-05 | | [Std Compression Examples](https://developer.apple.com/library/archive/samplecode/Std_Compression_Examples/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000903) | [macOS](https://developer.apple.com/library/archive/samplecode/Std_Compression_Examples/Std_Compression_Examples.zip) | 2003-01-14 | | [StickiesWithCoreData](https://developer.apple.com/library/archive/samplecode/SyncServices_StickiesWithCoreData/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009052) | [macOS](https://developer.apple.com/library/archive/samplecode/SyncServices_StickiesWithCoreData/SyncServices_StickiesWithCoreData.zip) | 2009-10-14 | | [StickyCorners: Using UIFieldBehavior and other UIDynamicBehaviors](https://developer.apple.com/library/archive/samplecode/StickyCorners/Introduction/Intro.html#//apple_ref/doc/uid/TP40016189) | [iOS](https://developer.apple.com/library/archive/samplecode/StickyCornersUsingUIFieldBehaviorandotherUIDynamicBehaviors/StickyCornersUsingUIFieldBehaviorandotherUIDynamicBehaviors.zip) | 2016-09-14 | | [StillMotion](https://developer.apple.com/library/archive/samplecode/StillMotion/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004355) | [macOS](https://developer.apple.com/library/archive/samplecode/StillMotion/StillMotion.zip) | 2007-11-14 | | [StitchedStreamPlayer](https://developer.apple.com/library/archive/samplecode/StitchedStreamPlayer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010092) | [iOS](https://developer.apple.com/library/archive/samplecode/StitchedStreamPlayer/StitchedStreamPlayer.zip) | 2016-07-14 | | [StopNGo for Mac](https://developer.apple.com/library/archive/samplecode/StopNGoOSX/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011121) | [macOS](https://developer.apple.com/library/archive/samplecode/StopNGoOSX/StopNGoOSX.zip) | 2011-07-26 | | [StopNGo for iOS](https://developer.apple.com/library/archive/samplecode/StopNGo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011123) | [iOS](https://developer.apple.com/library/archive/samplecode/StopNGo/StopNGo.zip) | 2011-10-12 | | [StreamNOP](https://developer.apple.com/library/archive/samplecode/StreamNOP/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000260) | [macOS](https://developer.apple.com/library/archive/samplecode/StreamNOP/StreamNOP.zip) | 2003-07-22 | | [StreetScroller](https://developer.apple.com/library/archive/samplecode/StreetScroller/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011102) | [iOS](https://developer.apple.com/library/archive/samplecode/StreetScroller/StreetScroller.zip) | 2013-07-31 | | [String](https://developer.apple.com/library/archive/samplecode/String/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008819) | [macOS](https://developer.apple.com/library/archive/samplecode/String/String.zip) | 2009-05-22 | | [StyleFlatteningSample](https://developer.apple.com/library/archive/samplecode/StyleFlatteningSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001096) | [macOS](https://developer.apple.com/library/archive/samplecode/StyleFlatteningSample/StyleFlatteningSample.zip) | 2003-01-14 | | [StyleMap](https://developer.apple.com/library/archive/samplecode/StyleMap/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000308) | [macOS](https://developer.apple.com/library/archive/samplecode/StyleMap/StyleMap.zip) | 2003-01-14 | | [SuperSnapshot](https://developer.apple.com/library/archive/samplecode/SuperSnapshot/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000171) | [macOS](https://developer.apple.com/library/archive/samplecode/SuperSnapshot/SuperSnapshot.zip) | 2003-10-10 | | [SurfaceVertexProgram](https://developer.apple.com/library/archive/samplecode/SurfaceVertexProgram/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000547) | [macOS](https://developer.apple.com/library/archive/samplecode/SurfaceVertexProgram/SurfaceVertexProgram.zip) | 2003-07-07 | | [SuspendAppleEvent](https://developer.apple.com/library/archive/samplecode/SuspendAppleEvent/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000674) | [macOS](https://developer.apple.com/library/archive/samplecode/SuspendAppleEvent/SuspendAppleEvent.zip) | 2003-10-14 | | [SwapLAF](https://developer.apple.com/library/archive/samplecode/SwapLAF/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000690) | [macOS](https://developer.apple.com/library/archive/samplecode/SwapLAF/SwapLAF.zip) | 2005-02-28 | | [SwingWatch: Using Device Motion on the Watch](https://developer.apple.com/library/archive/samplecode/SwingWatch/Introduction/Intro.html#//apple_ref/doc/uid/TP40017286) | [watchOS](https://developer.apple.com/library/archive/samplecode/SwingWatchUsingDeviceMotionontheWatch/SwingWatchUsingDeviceMotionontheWatch.zip) | 2016-09-13 | | [Switch Stack](https://developer.apple.com/library/archive/samplecode/Switch_Stack/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000223) | [macOS](https://developer.apple.com/library/archive/samplecode/Switch_Stack/Switch_Stack.zip) | 2003-01-14 | | [Syncer](https://developer.apple.com/library/archive/samplecode/Syncer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004002) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/Syncer/Syncer.zip) | 2006-08-01 | | [Sys7 popUpCDEF](https://developer.apple.com/library/archive/samplecode/Sys7_popUpCDEF/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000620) | [macOS](https://developer.apple.com/library/archive/samplecode/Sys7_popUpCDEF/Sys7_popUpCDEF.zip) | 2003-01-30 | | [System 7.0 Menu Def Info](https://developer.apple.com/library/archive/samplecode/System_7.0_Menu_Def_Info/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000197) | [macOS](https://developer.apple.com/library/archive/samplecode/System_7/System_7.0_Menu_Def_Info.zip) | 2003-01-14 | | [System 7.0 WDEF](https://developer.apple.com/library/archive/samplecode/System_7.0_WDEF/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000198) | [macOS](https://developer.apple.com/library/archive/samplecode/System_7/System_7.0_WDEF.zip) | 2003-01-14 | | [TCP](https://developer.apple.com/library/archive/samplecode/TCP/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000263) | [macOS](https://developer.apple.com/library/archive/samplecode/TCP/TCP.zip) | 2003-01-14 | | [TCP Server](https://developer.apple.com/library/archive/samplecode/TCP_Server/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000264) | [macOS](https://developer.apple.com/library/archive/samplecode/TCP_Server/TCP_Server.zip) | 2003-01-14 | | [TCPClose](https://developer.apple.com/library/archive/samplecode/TCPClose/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000265) | [macOS](https://developer.apple.com/library/archive/samplecode/TCPClose/TCPClose.zip) | 2003-01-14 | | [TCPTransports: Using Various Apple APIs to Run a TCP Connection](https://developer.apple.com/library/archive/samplecode/TCPTransports/Introduction/Intro.html#//apple_ref/doc/uid/TP40017680) | [iOS](https://developer.apple.com/library/archive/samplecode/TCPTransportsUsingVariousAppleAPIstoRunaTCPConnection/TCPTransportsUsingVariousAppleAPIstoRunaTCPConnection.zip) | 2018-05-10 | | [TE Over Background](https://developer.apple.com/library/archive/samplecode/TE_Over_Background/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000172) | [macOS](https://developer.apple.com/library/archive/samplecode/TE_Over_Background/TE_Over_Background.zip) | 2003-07-22 | | [TESample](https://developer.apple.com/library/archive/samplecode/TESample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000737) | [macOS](https://developer.apple.com/library/archive/samplecode/TESample/TESample.zip) | 2003-01-14 | | [TEXTtotypeIntlCoercion](https://developer.apple.com/library/archive/samplecode/TEXTtotypeIntlCoercion/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000675) | [macOS](https://developer.apple.com/library/archive/samplecode/TEXTtotypeIntlCoercion/TEXTtotypeIntlCoercion.zip) | 2003-01-14 | | [TLSTool](https://developer.apple.com/library/archive/samplecode/sc1236/Introduction/Intro.html#//apple_ref/doc/uid/DTS40014927) | [macOS](https://developer.apple.com/library/archive/samplecode/TLSTool/TLSTool.zip) | 2016-05-23 | | [TPIFile](https://developer.apple.com/library/archive/samplecode/TPIFile/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000267) | [macOS](https://developer.apple.com/library/archive/samplecode/TPIFile/TPIFile.zip) | 2003-07-22 | | [TVML Catalog: Using TVML Templates](https://developer.apple.com/library/archive/samplecode/TVMLCatalog/Introduction/Intro.html#//apple_ref/doc/uid/TP40016505) | [tvOS](https://developer.apple.com/library/archive/samplecode/TVMLCatalogUsingTVMLTemplates/TVMLCatalogUsingTVMLTemplates.zip) | 2017-06-06 | | [TVML Guide: Core concepts in TVML and TVMLKit](https://developer.apple.com/library/archive/samplecode/TVMLGuide/Introduction/Intro.html#//apple_ref/doc/uid/TP40016778) | [tvOS](https://developer.apple.com/library/archive/samplecode/TVMLGuideCoreconceptsinTVMLandTVMLKit/TVMLGuideCoreconceptsinTVMLandTVMLKit.zip) | 2017-06-06 | | [TVMLAudioVideo: Audio and Video Playback on tvOS](https://developer.apple.com/library/archive/samplecode/TVMLAudioVideo/Introduction/Intro.html#//apple_ref/doc/uid/TP40016506) | [tvOS](https://developer.apple.com/library/archive/samplecode/TVMLAudioVideoAudioandVideoPlaybackontvOS/TVMLAudioVideoAudioandVideoPlaybackontvOS.zip) | 2015-10-21 | | [Table Search with UISearchController](https://developer.apple.com/library/archive/samplecode/TableSearch_UISearchController/Introduction/Intro.html#//apple_ref/doc/uid/TP40014683) | [iOS](https://developer.apple.com/library/archive/samplecode/TableSearchwithUISearchController/TableSearchwithUISearchController.zip) | 2018-06-04 | | [Table View Animations and Gestures](https://developer.apple.com/library/archive/samplecode/TableViewUpdates/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010139) | [iOS](https://developer.apple.com/library/archive/samplecode/TableViewUpdates/TableViewUpdates.zip) | 2013-11-14 | | [TableViewCell Accessory](https://developer.apple.com/library/archive/samplecode/Accessory/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008066) | [iOS](https://developer.apple.com/library/archive/samplecode/Accessory/Accessory.zip) | 2014-02-21 | | [TableViewPlayground: Using View-Based NSTableView and NSOutlineView](https://developer.apple.com/library/archive/samplecode/TableViewPlayground/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010727) | [macOS](https://developer.apple.com/library/archive/samplecode/TableViewPlaygroundUsingView-BasedNSTableViewandNSOutlineView/TableViewPlaygroundUsingView-BasedNSTableViewandNSOutlineView.zip) | 2017-04-14 | | [Tabs LDEF](https://developer.apple.com/library/archive/samplecode/Tabs_LDEF/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000621) | [macOS](https://developer.apple.com/library/archive/samplecode/Tabs_LDEF/Tabs_LDEF.zip) | 2003-01-30 | | [TabsShowcase](https://developer.apple.com/library/archive/samplecode/TabsShowcase/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003807) | [macOS](https://developer.apple.com/library/archive/samplecode/TabsShowcase/TabsShowcase.zip) | 2005-10-28 | | [Tabster: Various techniques in using UITabBarController](https://developer.apple.com/library/archive/samplecode/Tabster/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011213) | [iOS](https://developer.apple.com/library/archive/samplecode/TabsterVarioustechniquesinusingUITabBarController/TabsterVarioustechniquesinusingUITabBarController.zip) | 2018-02-15 | | [TalkTool](https://developer.apple.com/library/archive/samplecode/TalkTool/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000262) | [macOS](https://developer.apple.com/library/archive/samplecode/TalkTool/TalkTool.zip) | 2003-01-14 | | [Talking Heads](https://developer.apple.com/library/archive/samplecode/Talking_Heads/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000261) | [macOS](https://developer.apple.com/library/archive/samplecode/Talking_Heads/Talking_Heads.zip) | 2003-01-14 | | [TalkingToTheLiveView: Sending messages to a Swift Playground live view and saving data to its key-value store](https://developer.apple.com/library/archive/samplecode/TalkingToTheLiveView/Introduction/Intro.html#//apple_ref/doc/uid/TP40017380) | [iOS](https://developer.apple.com/library/archive/samplecode/TalkingToTheLiveViewSendingmessagestoaSwiftPlaygroundliveviewandsavingdatatoitskey-valuestore/TalkingToTheLiveViewSendingmessagestoaSwiftPlaygroundliveviewandsavingdatatoitskey-valuestore.zip) | 2016-09-13 | | [Target-Action using Cocoa Bindings](https://developer.apple.com/library/archive/samplecode/BoundButton/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004366) | [macOS](https://developer.apple.com/library/archive/samplecode/BoundButton/BoundButton.zip) | 2013-04-18 | | [TargetGallery](https://developer.apple.com/library/archive/samplecode/TargetGallery/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008923) | [macOS](https://developer.apple.com/library/archive/samplecode/TargetGallery/TargetGallery.zip) | 2011-07-18 | | [TbltDrvr](https://developer.apple.com/library/archive/samplecode/TbltDrvr/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000007) | [macOS](https://developer.apple.com/library/archive/samplecode/TbltDrvr/TbltDrvr.zip) | 2003-01-14 | | [TemperatureConverter](https://developer.apple.com/library/archive/samplecode/TemperatureConverter/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008839) | [macOS](https://developer.apple.com/library/archive/samplecode/TemperatureConverter/TemperatureConverter.zip) | 2012-06-05 | | [TemperatureTester](https://developer.apple.com/library/archive/samplecode/TemperatureTester/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003705) | [Xcode Developer Tools](https://developer.apple.com/library/archive/samplecode/TemperatureTester/TemperatureTester.zip) | 2010-07-09 | | [Teslameter](https://developer.apple.com/library/archive/samplecode/Teslameter/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008931) | [iOS](https://developer.apple.com/library/archive/samplecode/Teslameter/Teslameter.zip) | 2014-08-25 | | [Test Code](https://developer.apple.com/library/archive/samplecode/Test_Code/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000154) | [macOS](https://developer.apple.com/library/archive/samplecode/Test_Code/Test_Code.zip) | 2003-01-14 | | [Test64BitMultiprec](https://developer.apple.com/library/archive/samplecode/Test64BitMultiprec/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003947) | [macOS](https://developer.apple.com/library/archive/samplecode/Test64BitMultiprec/Test64BitMultiprec.zip) | 2006-06-09 | | [TestCarbonAppTiger](https://developer.apple.com/library/archive/samplecode/TestCarbonAppTiger/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003937) | [macOS](https://developer.apple.com/library/archive/samplecode/TestCarbonAppTiger/TestCarbonAppTiger.zip) | 2012-07-24 | | [TestQD](https://developer.apple.com/library/archive/samplecode/TestQD/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000273) | [macOS](https://developer.apple.com/library/archive/samplecode/TestQD/TestQD.zip) | 2003-07-22 | | [TestVM](https://developer.apple.com/library/archive/samplecode/TestVM/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000274) | [macOS](https://developer.apple.com/library/archive/samplecode/TestVM/TestVM.zip) | 2003-07-22 | | [TextDemo](https://developer.apple.com/library/archive/samplecode/TextDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001000) | [macOS](https://developer.apple.com/library/archive/samplecode/TextDemo/TextDemo.zip) | 2003-01-14 | | [TextEdit](https://developer.apple.com/library/archive/samplecode/TextEdit/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011741) | [macOS](https://developer.apple.com/library/archive/samplecode/TextEdit/TextEdit.zip) | 2013-08-26 | | [TextEditPlus](https://developer.apple.com/library/archive/samplecode/TextEditPlus/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004025) | [macOS](https://developer.apple.com/library/archive/samplecode/TextEditPlus/TextEditPlus.zip) | 2006-07-28 | | [TextInputView](https://developer.apple.com/library/archive/samplecode/TextInputView/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008840) | [macOS](https://developer.apple.com/library/archive/samplecode/TextInputView/TextInputView.zip) | 2012-06-05 | | [TextLayoutDemo](https://developer.apple.com/library/archive/samplecode/TextLayoutDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004341) | [macOS](https://developer.apple.com/library/archive/samplecode/TextLayoutDemo/TextLayoutDemo.zip) | 2012-06-09 | | [TextLinks](https://developer.apple.com/library/archive/samplecode/TextLinks/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000409) | [macOS](https://developer.apple.com/library/archive/samplecode/TextLinks/TextLinks.zip) | 2003-07-29 | | [TextNameTool](https://developer.apple.com/library/archive/samplecode/TextNameTool/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000647) | [macOS](https://developer.apple.com/library/archive/samplecode/TextNameTool/TextNameTool.zip) | 2003-10-27 | | [TextSizingExample](https://developer.apple.com/library/archive/samplecode/TextSizingExample/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008841) | [macOS](https://developer.apple.com/library/archive/samplecode/TextSizingExample/TextSizingExample.zip) | 2012-06-05 | | [TextTrack](https://developer.apple.com/library/archive/samplecode/TextTrack/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003730) | [macOS](https://developer.apple.com/library/archive/samplecode/TextTrack/TextTrack.zip) | 2005-06-27 | | [TextViewConfig](https://developer.apple.com/library/archive/samplecode/TextViewConfig/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000410) | [macOS](https://developer.apple.com/library/archive/samplecode/TextViewConfig/TextViewConfig.zip) | 2003-01-14 | | [TextViewDelegate](https://developer.apple.com/library/archive/samplecode/TextViewDelegate/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000411) | [macOS](https://developer.apple.com/library/archive/samplecode/TextViewDelegate/TextViewDelegate.zip) | 2011-08-23 | | [TexturePerformanceDemo](https://developer.apple.com/library/archive/samplecode/TexturePerformanceDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003725) | [macOS](https://developer.apple.com/library/archive/samplecode/TexturePerformanceDemo/TexturePerformanceDemo.zip) | 2005-06-01 | | [TextureRange](https://developer.apple.com/library/archive/samplecode/TextureRange/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000551) | [macOS](https://developer.apple.com/library/archive/samplecode/TextureRange/TextureRange.zip) | 2003-07-16 | | [TextureUpload](https://developer.apple.com/library/archive/samplecode/TextureUpload/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009988) | [macOS](https://developer.apple.com/library/archive/samplecode/TextureUpload/TextureUpload.zip) | 2010-05-19 | | [TheElements](https://developer.apple.com/library/archive/samplecode/TheElements/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007419) | [iOS](https://developer.apple.com/library/archive/samplecode/TheElements/TheElements.zip) | 2015-08-25 | | [ThreadsExportMovie](https://developer.apple.com/library/archive/samplecode/ThreadsExportMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003172) | [macOS](https://developer.apple.com/library/archive/samplecode/ThreadsExportMovie/ThreadsExportMovie.zip) | 2006-01-03 | | [ThreadsExporter](https://developer.apple.com/library/archive/samplecode/ThreadsExporter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003171) | [macOS](https://developer.apple.com/library/archive/samplecode/ThreadsExporter/ThreadsExporter.zip) | 2005-07-26 | | [ThreadsImportMovie](https://developer.apple.com/library/archive/samplecode/ThreadsImportMovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003224) | [macOS](https://developer.apple.com/library/archive/samplecode/ThreadsImportMovie/ThreadsImportMovie.zip) | 2005-07-26 | | [ThreadsImporter](https://developer.apple.com/library/archive/samplecode/ThreadsImporter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003146) | [macOS](https://developer.apple.com/library/archive/samplecode/ThreadsImporter/ThreadsImporter.zip) | 2005-07-22 | | [Thumbnail Test](https://developer.apple.com/library/archive/samplecode/Thumbnail_Test/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000173) | [macOS](https://developer.apple.com/library/archive/samplecode/Thumbnail_Test/Thumbnail_Test.zip) | 2003-03-12 | | [Tic Tac Toe: Creating Accessible Apps with Custom UI](https://developer.apple.com/library/archive/samplecode/AccessibleTicTacToe/Introduction/Intro.html#//apple_ref/doc/uid/TP40014589) | [macOS](https://developer.apple.com/library/archive/samplecode/TicTacToeCreatingAccessibleAppswithCustomUI/TicTacToeCreatingAccessibleAppswithCustomUI.zip) | 2016-02-18 | | [TicTacToe with HTML5 Offline Storage](https://developer.apple.com/library/archive/samplecode/TicTacToe/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010309) | [Safari\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/TicTacToe/TicTacToe.zip) | 2010-11-29 | | [TickAnimate](https://developer.apple.com/library/archive/samplecode/TickAnimate/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000174) | [macOS](https://developer.apple.com/library/archive/samplecode/TickAnimate/TickAnimate.zip) | 2003-07-22 | | [TickerView](https://developer.apple.com/library/archive/samplecode/TickerView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000648) | [macOS](https://developer.apple.com/library/archive/samplecode/TickerView/TickerView.zip) | 2003-01-30 | | [Tiler](https://developer.apple.com/library/archive/samplecode/Tiler/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000649) | [macOS](https://developer.apple.com/library/archive/samplecode/Tiler/Tiler.zip) | 2003-10-24 | | [TimeCallbackDemo](https://developer.apple.com/library/archive/samplecode/TimeCallbackDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001001) | [macOS](https://developer.apple.com/library/archive/samplecode/TimeCallbackDemo/TimeCallbackDemo.zip) | 2006-05-11 | | [TimeCode](https://developer.apple.com/library/archive/samplecode/TimeCode/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001002) | [macOS](https://developer.apple.com/library/archive/samplecode/TimeCode/TimeCode.zip) | 2006-06-28 | | [TimeCode Media Handlers](https://developer.apple.com/library/archive/samplecode/TimeCode_Media_Handlers/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000336) | [macOS](https://developer.apple.com/library/archive/samplecode/TimeCode_Media_Handlers/TimeCode_Media_Handlers.zip) | 2003-01-14 | | [TimeSlaving](https://developer.apple.com/library/archive/samplecode/TimeSlaving/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001004) | [macOS](https://developer.apple.com/library/archive/samplecode/TimeSlaving/TimeSlaving.zip) | 2003-01-14 | | [TimeZone.Daylight](https://developer.apple.com/library/archive/samplecode/TimeZone.Daylight/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000275) | [macOS](https://developer.apple.com/library/archive/samplecode/TimeZone/TimeZone.Daylight.zip) | 2003-01-14 | | [TimelineToTC](https://developer.apple.com/library/archive/samplecode/TimelineToTC/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004351) | [macOS](https://developer.apple.com/library/archive/samplecode/TimelineToTC/TimelineToTC.zip) | 2007-06-01 | | [TimerEventSample](https://developer.apple.com/library/archive/samplecode/TimerEventSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000451) | [macOS](https://developer.apple.com/library/archive/samplecode/TimerEventSample/TimerEventSample.zip) | 2003-01-14 | | [TimerTst](https://developer.apple.com/library/archive/samplecode/TimerTst/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000029) | [macOS](https://developer.apple.com/library/archive/samplecode/TimerTst/TimerTst.zip) | 2003-01-14 | | [Tinted Image](https://developer.apple.com/library/archive/samplecode/Tinted_Image/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000412) | [macOS](https://developer.apple.com/library/archive/samplecode/Tinted_Image/Tinted_Image.zip) | 2003-01-14 | | [TipWrapper](https://developer.apple.com/library/archive/samplecode/TipWrapper/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003173) | [macOS](https://developer.apple.com/library/archive/samplecode/TipWrapper/TipWrapper.zip) | 2003-12-18 | | [ToolbarSample: Using NSToolbar to construct a window toolbar](https://developer.apple.com/library/archive/samplecode/ToolbarSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000413) | [macOS](https://developer.apple.com/library/archive/samplecode/ToolbarSampleUsingNSToolbartoconstructawindowtoolbar/ToolbarSampleUsingNSToolbartoconstructawindowtoolbar.zip) | 2018-05-03 | | [TopPaid](https://developer.apple.com/library/archive/samplecode/TopPaid/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009796) | [iOS](https://developer.apple.com/library/archive/samplecode/TopPaid/TopPaid.zip) | 2011-01-13 | | [TopSongs](https://developer.apple.com/library/archive/samplecode/TopSongs/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008925) | [iOS](https://developer.apple.com/library/archive/samplecode/TopSongs/TopSongs.zip) | 2017-03-23 | | [TouchCanvas: Using UITouch efficiently and effectively](https://developer.apple.com/library/archive/samplecode/TouchCanvas/Introduction/Intro.html#//apple_ref/doc/uid/TP40016561) | [iOS](https://developer.apple.com/library/archive/samplecode/TouchCanvasUsingUITouchefficientlyandeffectively/TouchCanvasUsingUITouchefficientlyandeffectively.zip) | 2017-11-16 | | [TrackBall](https://developer.apple.com/library/archive/samplecode/TrackBall/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004357) | [macOS](https://developer.apple.com/library/archive/samplecode/TrackBall/TrackBall.zip) | 2011-07-01 | | [TrackFormatDemo](https://developer.apple.com/library/archive/samplecode/TrackFormatDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004039) | [macOS](https://developer.apple.com/library/archive/samplecode/TrackFormatDemo/TrackFormatDemo.zip) | 2006-08-01 | | [TrackIt](https://developer.apple.com/library/archive/samplecode/TrackIt/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004139) | [macOS](https://developer.apple.com/library/archive/samplecode/TrackIt/TrackIt.zip) | 2011-03-18 | | [TradDriverLoaderLib](https://developer.apple.com/library/archive/samplecode/TradDriverLoaderLib/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000440) | [macOS](https://developer.apple.com/library/archive/samplecode/TradDriverLoaderLib/TradDriverLoaderLib.zip) | 2003-01-14 | | [Trailers](https://developer.apple.com/library/archive/samplecode/Trailers.dcproj/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008950) | [Safari (Mobile)\|Safari\|Xcode Developer Tools](https://developer.apple.com/library/archive/samplecode/Trailers/Trailers.dcproj.zip) | 2010-04-20 | | [Trajectories](https://developer.apple.com/library/archive/samplecode/Trajectories/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008883) | [macOS](https://developer.apple.com/library/archive/samplecode/Trajectories/Trajectories.zip) | 2009-09-24 | | [TransWeb](https://developer.apple.com/library/archive/samplecode/TransWeb/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008614) | [iOS](https://developer.apple.com/library/archive/samplecode/TransWeb/TransWeb.zip) | 2010-06-25 | | [TransferProvider](https://developer.apple.com/library/archive/samplecode/TransferProvider/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000268) | [macOS](https://developer.apple.com/library/archive/samplecode/TransferProvider/TransferProvider.zip) | 2003-07-22 | | [Transformed Image](https://developer.apple.com/library/archive/samplecode/Transformed_Image/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000414) | [macOS](https://developer.apple.com/library/archive/samplecode/Transformed_Image/Transformed_Image.zip) | 2003-01-14 | | [Transition Queue Watcher](https://developer.apple.com/library/archive/samplecode/Transition_Queue_Watcher/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000269) | [macOS](https://developer.apple.com/library/archive/samplecode/Transition_Queue_Watcher/Transition_Queue_Watcher.zip) | 2003-01-14 | | [Transitions](https://developer.apple.com/library/archive/samplecode/Transitions/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001006) | [macOS](https://developer.apple.com/library/archive/samplecode/Transitions/Transitions.zip) | 2003-01-14 | | [TranslateRotate](https://developer.apple.com/library/archive/samplecode/TranslateRotate/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000175) | [macOS](https://developer.apple.com/library/archive/samplecode/TranslateRotate/TranslateRotate.zip) | 2003-07-22 | | [TriGrids](https://developer.apple.com/library/archive/samplecode/TriGrids/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000105) | [macOS](https://developer.apple.com/library/archive/samplecode/TriGrids/TriGrids.zip) | 2003-01-14 | | [TubeTest](https://developer.apple.com/library/archive/samplecode/TubeTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000176) | [macOS](https://developer.apple.com/library/archive/samplecode/TubeTest/TubeTest.zip) | 2003-03-12 | | [Tumbler and Podium](https://developer.apple.com/library/archive/samplecode/Tumbler_and_Podium/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000127) | [macOS](https://developer.apple.com/library/archive/samplecode/Tumbler_and_Podium/Tumbler_and_Podium.zip) | 2003-01-14 | | [TweenCamera](https://developer.apple.com/library/archive/samplecode/TweenCamera/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001008) | [macOS](https://developer.apple.com/library/archive/samplecode/TweenCamera/TweenCamera.zip) | 2003-01-14 | | [Tweeting](https://developer.apple.com/library/archive/samplecode/Tweeting/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011191) | [iOS](https://developer.apple.com/library/archive/samplecode/Tweeting/Tweeting.zip) | 2011-10-12 | | [TwoColumn LDEF](https://developer.apple.com/library/archive/samplecode/TwoColumn_LDEF/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000622) | [macOS](https://developer.apple.com/library/archive/samplecode/TwoColumn_LDEF/TwoColumn_LDEF.zip) | 2003-01-30 | | [TypeServicesForUnicode](https://developer.apple.com/library/archive/samplecode/TypeServicesForUnicode/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001097) | [macOS](https://developer.apple.com/library/archive/samplecode/TypeServicesForUnicode/TypeServicesForUnicode.zip) | 2005-08-10 | | [UDPEcho](https://developer.apple.com/library/archive/samplecode/UDPEcho/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009660) | [macOS](https://developer.apple.com/library/archive/samplecode/UDPEcho/UDPEcho.zip) | 2012-08-17 | | [UDPSample](https://developer.apple.com/library/archive/samplecode/UDPSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000270) | [macOS](https://developer.apple.com/library/archive/samplecode/UDPSample/UDPSample.zip) | 2003-01-14 | | [UIElementInspector](https://developer.apple.com/library/archive/samplecode/UIElementInspector/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000728) | [macOS](https://developer.apple.com/library/archive/samplecode/UIElementInspector/UIElementInspector.zip) | 2010-06-03 | | [UIImagePicker Video Recorder](https://developer.apple.com/library/archive/samplecode/VideoRecorder/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010137) | [iOS](https://developer.apple.com/library/archive/samplecode/VideoRecorder/VideoRecorder.zip) | 2013-08-13 | | [UIKit Catalog (iOS): Creating and Customizing UIKit Controls](https://developer.apple.com/library/archive/samplecode/UICatalog/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007710) | [iOS](https://developer.apple.com/library/archive/samplecode/UIKitCatalogiOSCreatingandCustomizingUIKitControls/UIKitCatalogiOSCreatingandCustomizingUIKitControls.zip) | 2017-12-07 | | [UIKit Catalog (tvOS): Creating and Customizing UIKit Controls](https://developer.apple.com/library/archive/samplecode/UICatalogFortvOS/Introduction/Intro.html#//apple_ref/doc/uid/TP40016433) | [tvOS](https://developer.apple.com/library/archive/samplecode/UIKitCatalogtvOSCreatingandCustomizingUIKitControls/UIKitCatalogtvOSCreatingandCustomizingUIKitControls.zip) | 2017-02-02 | | [UIKit Dynamics Catalog](https://developer.apple.com/library/archive/samplecode/DynamicsCatalog/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013414) | [iOS](https://developer.apple.com/library/archive/samplecode/DynamicsCatalog/DynamicsCatalog.zip) | 2013-09-23 | | [UIKit Printing with UIPrintInteractionController and UIViewPrintFormatter](https://developer.apple.com/library/archive/samplecode/PrintWebView/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010311) | [iOS](https://developer.apple.com/library/archive/samplecode/PrintWebView/PrintWebView.zip) | 2012-12-05 | | [UITableView Fundamentals for iOS](https://developer.apple.com/library/archive/samplecode/TableViewSuite/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007318) | [iOS](https://developer.apple.com/library/archive/samplecode/UITableViewFundamentalsforiOS/UITableViewFundamentalsforiOS.zip) | 2016-04-07 | | [URL CacheInfo](https://developer.apple.com/library/archive/samplecode/CacheInfo-MacOSX/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007751) | [macOS](https://developer.apple.com/library/archive/samplecode/CacheInfo-MacOSX/CacheInfo-MacOSX.zip) | 2008-06-05 | | [URLCache](https://developer.apple.com/library/archive/samplecode/URLCache/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008061) | [iOS](https://developer.apple.com/library/archive/samplecode/URLCache/URLCache.zip) | 2010-06-25 | | [URLTextView](https://developer.apple.com/library/archive/samplecode/URLTextView/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000650) | [macOS](https://developer.apple.com/library/archive/samplecode/URLTextView/URLTextView.zip) | 2003-01-30 | | [USBPrivateDataSample](https://developer.apple.com/library/archive/samplecode/USBPrivateDataSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000456) | [macOS](https://developer.apple.com/library/archive/samplecode/USBPrivateDataSample/USBPrivateDataSample.zip) | 2006-10-16 | | [UTXplorer](https://developer.apple.com/library/archive/samplecode/UTXplorer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007474) | [macOS](https://developer.apple.com/library/archive/samplecode/UTXplorer/UTXplorer.zip) | 2008-03-19 | | [UnicornChat: Extending Your Apps with SiriKit](https://developer.apple.com/library/archive/samplecode/UnicornChat/Introduction/Intro.html#//apple_ref/doc/uid/TP40017332) | [iOS](https://developer.apple.com/library/archive/samplecode/UnicornChatExtendingYourAppswithSiriKit/UnicornChatExtendingYourAppswithSiriKit.zip) | 2016-10-27 | | [Unit Testing Apps and Frameworks](https://developer.apple.com/library/archive/samplecode/UnitTests/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011742) | [iOS\|macOS](https://developer.apple.com/library/archive/samplecode/UnitTestingAppsandFrameworks/UnitTestingAppsandFrameworks.zip) | 2018-04-26 | | [UniversalHIDModuleTest](https://developer.apple.com/library/archive/samplecode/UniversalHIDModuleTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000062) | [macOS](https://developer.apple.com/library/archive/samplecode/UniversalHIDModuleTest/UniversalHIDModuleTest.zip) | 2003-01-14 | | [Unread Tabs Safari Extension](https://developer.apple.com/library/archive/samplecode/UnreadTabsSafariExtension/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011114) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/UnreadTabsSafariExtension/UnreadTabsSafariExtension.zip) | 2011-06-07 | | [UnsharpMask](https://developer.apple.com/library/archive/samplecode/UnsharpMask/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003724) | [macOS](https://developer.apple.com/library/archive/samplecode/UnsharpMask/UnsharpMask.zip) | 2005-06-06 | | [UnwindSegue](https://developer.apple.com/library/archive/samplecode/UnwindSegue/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013644) | [iOS](https://developer.apple.com/library/archive/samplecode/UnwindSegue/UnwindSegue.zip) | 2018-03-15 | | [UpdateXcodeSubprojects](https://developer.apple.com/library/archive/samplecode/UpdateXcodeSubprojects/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003711) | [Xcode Developer Tools\|macOS](https://developer.apple.com/library/archive/samplecode/UpdateXcodeSubprojects/UpdateXcodeSubprojects.zip) | 2005-06-06 | | [User Interface 3D Transforms](https://developer.apple.com/library/archive/samplecode/UserInterface3DTransforms/Introduction/Intro.html#//apple_ref/doc/uid/TP40017624) | [iOS](https://developer.apple.com/library/archive/samplecode/UserInterface3DTransforms/UserInterface3DTransforms.zip) | 2017-04-27 | | [UserDefaults](https://developer.apple.com/library/archive/samplecode/UserDefaults/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008874) | [macOS](https://developer.apple.com/library/archive/samplecode/UserDefaults/UserDefaults.zip) | 2012-06-05 | | [UserFunction Gestalt](https://developer.apple.com/library/archive/samplecode/UserFunction_Gestalt/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000284) | [Xcode Developer Tools](https://developer.apple.com/library/archive/samplecode/UserFunction_Gestalt/UserFunction_Gestalt.zip) | 2003-07-22 | | [Using AVAudioEngine for Playback, Mixing and Recording (AVAEMixerSample)](https://developer.apple.com/library/archive/samplecode/AVAEMixerSample/Introduction/Intro.html#//apple_ref/doc/uid/TP40015134) | [iOS](https://developer.apple.com/library/archive/samplecode/UsingAVAudioEngineforPlaybackMixingandRecordingAVAEMixerSample/UsingAVAudioEngineforPlaybackMixingandRecordingAVAEMixerSample.zip) | 2017-03-23 | | [Using AVFoundation APIs to record a movie with location metadata](https://developer.apple.com/library/archive/samplecode/AVCaptureLocation/Introduction/Intro.html#//apple_ref/doc/uid/TP40014494) | [iOS](https://developer.apple.com/library/archive/samplecode/UsingAVFoundationAPIstorecordamoviewithlocationmetadata/UsingAVFoundationAPIstorecordamoviewithlocationmetadata.zip) | 2014-09-17 | | [Using AirPrint to Print a Banner](https://developer.apple.com/library/archive/samplecode/PrintBanner/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013422) | [iOS](https://developer.apple.com/library/archive/samplecode/PrintBanner/PrintBanner.zip) | 2014-03-12 | | [Using External Displays](https://developer.apple.com/library/archive/samplecode/ExternalDisplay/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010724) | [iOS](https://developer.apple.com/library/archive/samplecode/ExternalDisplay/ExternalDisplay.zip) | 2013-09-16 | | [Using NSPageController](https://developer.apple.com/library/archive/samplecode/FileCards/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012298) | [macOS](https://developer.apple.com/library/archive/samplecode/FileCards/FileCards.zip) | 2014-02-21 | | [Using NSTokenField](https://developer.apple.com/library/archive/samplecode/Tokens/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013108) | [macOS](https://developer.apple.com/library/archive/samplecode/UsingNSTokenField/UsingNSTokenField.zip) | 2016-06-03 | | [Using NSViewController for managing views](https://developer.apple.com/library/archive/samplecode/ViewController/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004233) | [macOS](https://developer.apple.com/library/archive/samplecode/ViewController/ViewController.zip) | 2014-04-24 | | [Using a Search Bar in a Toolbar](https://developer.apple.com/library/archive/samplecode/ToolbarSearch/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009461) | [iOS](https://developer.apple.com/library/archive/samplecode/ToolbarSearch/ToolbarSearch.zip) | 2013-09-03 | | [Using an AUGraph with the Multi-Channel Mixer and Remote I/O Audio Unit ](https://developer.apple.com/library/archive/samplecode/iOSMultichannelMixerTest/Introduction/Intro.html#//apple_ref/doc/uid/TP40016060) | [iOS](https://developer.apple.com/library/archive/samplecode/UsinganAUGraphwiththeMulti-ChannelMixerandRemoteIOAudioUnit/UsinganAUGraphwiththeMulti-ChannelMixerandRemoteIOAudioUnit.zip) | 2015-06-19 | | [Using the Watch Connectivity API](https://developer.apple.com/library/archive/samplecode/SimpleWatchConnectivity/Introduction/Intro.html#//apple_ref/doc/uid/TP40017663) | [watchOS\|iOS](https://developer.apple.com/library/archive/samplecode/UsingtheWatchConnectivityAPI/UsingtheWatchConnectivityAPI.zip) | 2017-10-26 | | [Utility Library](https://developer.apple.com/library/archive/samplecode/Utility_Library/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000113) | [macOS](https://developer.apple.com/library/archive/samplecode/Utility_Library/Utility_Library.zip) | 2003-01-14 | | [VBL](https://developer.apple.com/library/archive/samplecode/VBL/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000552) | [macOS](https://developer.apple.com/library/archive/samplecode/VBL/VBL.zip) | 2003-07-07 | | [VBLSnippet](https://developer.apple.com/library/archive/samplecode/VBLSnippet/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000318) | [macOS](https://developer.apple.com/library/archive/samplecode/VBLSnippet/VBLSnippet.zip) | 2003-10-30 | | [VCDemo](https://developer.apple.com/library/archive/samplecode/VCDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000128) | [macOS](https://developer.apple.com/library/archive/samplecode/VCDemo/VCDemo.zip) | 2003-01-14 | | [VDTextSample](https://developer.apple.com/library/archive/samplecode/VDTextSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000337) | [macOS](https://developer.apple.com/library/archive/samplecode/VDTextSample/VDTextSample.zip) | 2003-01-14 | | [VMSify](https://developer.apple.com/library/archive/samplecode/VMSify/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000271) | [macOS](https://developer.apple.com/library/archive/samplecode/VMSify/VMSify.zip) | 2003-07-22 | | [VRInteraction](https://developer.apple.com/library/archive/samplecode/VRInteraction/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001009) | [macOS](https://developer.apple.com/library/archive/samplecode/VRInteraction/VRInteraction.zip) | 2003-01-14 | | [VRMakePano Library](https://developer.apple.com/library/archive/samplecode/VRMakePano_Library/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001028) | [macOS](https://developer.apple.com/library/archive/samplecode/VRMakePano_Library/VRMakePano_Library.zip) | 2003-01-14 | | [VelEng FFT](https://developer.apple.com/library/archive/samplecode/VelEng_FFT/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000458) | [macOS](https://developer.apple.com/library/archive/samplecode/VelEng_FFT/VelEng_FFT.zip) | 2003-01-14 | | [VelEng Multiprecision](https://developer.apple.com/library/archive/samplecode/VelEng_Multiprecision/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000459) | [macOS](https://developer.apple.com/library/archive/samplecode/VelEng_Multiprecision/VelEng_Multiprecision.zip) | 2003-01-14 | | [VelEng Wavelet](https://developer.apple.com/library/archive/samplecode/VelEng_Wavelet/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000460) | [macOS](https://developer.apple.com/library/archive/samplecode/VelEng_Wavelet/VelEng_Wavelet.zip) | 2003-01-14 | | [VendorSpecificType00](https://developer.apple.com/library/archive/samplecode/VendorSpecificType00/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000433) | [macOS](https://developer.apple.com/library/archive/samplecode/VendorSpecificType00/VendorSpecificType00.zip) | 2006-10-02 | | [Verification](https://developer.apple.com/library/archive/samplecode/Verification/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000470) | [macOS](https://developer.apple.com/library/archive/samplecode/Verification/Verification.zip) | 2004-01-23 | | [Versions](https://developer.apple.com/library/archive/samplecode/Versions/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000114) | [macOS](https://developer.apple.com/library/archive/samplecode/Versions/Versions.zip) | 2003-01-14 | | [Vertest](https://developer.apple.com/library/archive/samplecode/Vertest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000623) | [macOS](https://developer.apple.com/library/archive/samplecode/Vertest/Vertest.zip) | 2003-01-30 | | [Vertex Optimization](https://developer.apple.com/library/archive/samplecode/Vertex_Optimization/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000553) | [macOS](https://developer.apple.com/library/archive/samplecode/Vertex_Optimization/Vertex_Optimization.zip) | 2003-07-07 | | [VertexPerformanceDemo](https://developer.apple.com/library/archive/samplecode/VertexPerformanceDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003726) | [macOS](https://developer.apple.com/library/archive/samplecode/VertexPerformanceDemo/VertexPerformanceDemo.zip) | 2005-06-01 | | [VertexPerformanceTest](https://developer.apple.com/library/archive/samplecode/VertexPerformanceTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000554) | [macOS](https://developer.apple.com/library/archive/samplecode/VertexPerformanceTest/VertexPerformanceTest.zip) | 2003-01-14 | | [Video Hardware Info](https://developer.apple.com/library/archive/samplecode/Video_Hardware_Info/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003174) | [macOS](https://developer.apple.com/library/archive/samplecode/Video_Hardware_Info/Video_Hardware_Info.zip) | 2004-02-12 | | [VideoFrameToGWorld](https://developer.apple.com/library/archive/samplecode/VideoFrameToGWorld/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000797) | [macOS](https://developer.apple.com/library/archive/samplecode/VideoFrameToGWorld/VideoFrameToGWorld.zip) | 2003-01-14 | | [VideoHardwareInfo](https://developer.apple.com/library/archive/samplecode/VideoHardwareInfo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003442) | [macOS](https://developer.apple.com/library/archive/samplecode/VideoHardwareInfo/VideoHardwareInfo.zip) | 2007-05-14 | | [VideoProcessing](https://developer.apple.com/library/archive/samplecode/VideoProcessing/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000883) | [macOS](https://developer.apple.com/library/archive/samplecode/VideoProcessing/VideoProcessing.zip) | 2003-10-06 | | [VideoSnake](https://developer.apple.com/library/archive/samplecode/VideoSnake/Introduction/Intro.html#//apple_ref/doc/uid/DTS40012327) | [iOS](https://developer.apple.com/library/archive/samplecode/VideoSnake/VideoSnake.zip) | 2016-09-28 | | [VideoViewer](https://developer.apple.com/library/archive/samplecode/VideoViewer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003703) | [macOS](https://developer.apple.com/library/archive/samplecode/VideoViewer/VideoViewer.zip) | 2005-08-01 | | [ViewControllerPreviews: Using the UIViewController previewing APIs](https://developer.apple.com/library/archive/samplecode/ViewControllerPreviews/Introduction/Intro.html#//apple_ref/doc/uid/TP40016546) | [iOS](https://developer.apple.com/library/archive/samplecode/ViewControllerPreviewsUsingtheUIViewControllerpreviewingAPIs/ViewControllerPreviewsUsingtheUIViewControllerpreviewingAPIs.zip) | 2016-09-13 | | [ViewTransitions](https://developer.apple.com/library/archive/samplecode/ViewTransitions/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007411) | [iOS](https://developer.apple.com/library/archive/samplecode/ViewTransitions/ViewTransitions.zip) | 2013-07-31 | | [ViewerCallbackSample](https://developer.apple.com/library/archive/samplecode/ViewerCallbackSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000137) | [macOS](https://developer.apple.com/library/archive/samplecode/ViewerCallbackSample/ViewerCallbackSample.zip) | 2003-01-14 | | [ViewerFrameWorkSample](https://developer.apple.com/library/archive/samplecode/ViewerFrameWorkSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000138) | [macOS](https://developer.apple.com/library/archive/samplecode/ViewerFrameWorkSample/ViewerFrameWorkSample.zip) | 2003-01-14 | | [ViewerGWorldTest](https://developer.apple.com/library/archive/samplecode/ViewerGWorldTest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000129) | [macOS](https://developer.apple.com/library/archive/samplecode/ViewerGWorldTest/ViewerGWorldTest.zip) | 2003-01-14 | | [ViewerOptBtnSample](https://developer.apple.com/library/archive/samplecode/ViewerOptBtnSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000139) | [macOS](https://developer.apple.com/library/archive/samplecode/ViewerOptBtnSample/ViewerOptBtnSample.zip) | 2003-01-14 | | [VirtualScanner](https://developer.apple.com/library/archive/samplecode/VirtualScanner/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011006) | [macOS](https://developer.apple.com/library/archive/samplecode/VirtualScanner/VirtualScanner.zip) | 2012-06-12 | | [Voices](https://developer.apple.com/library/archive/samplecode/Voices/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003699) | [Safari\|macOS](https://developer.apple.com/library/archive/samplecode/Voices/Voices.zip) | 2007-06-25 | | [VolumeToBSDNode](https://developer.apple.com/library/archive/samplecode/VolumeToBSDNode/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000434) | [macOS](https://developer.apple.com/library/archive/samplecode/VolumeToBSDNode/VolumeToBSDNode.zip) | 2006-10-16 | | [VoxelPanda: Getting Started with Voxels Using ModelIO and SceneKit](https://developer.apple.com/library/archive/samplecode/VoxelPanda/Introduction/Intro.html#//apple_ref/doc/uid/TP40016473) | [macOS](https://developer.apple.com/library/archive/samplecode/VoxelPandaGettingStartedwithVoxelsUsingModelIOandSceneKit/VoxelPandaGettingStartedwithVoxelsUsingModelIOandSceneKit.zip) | 2015-12-10 | | [VwrFrameWork](https://developer.apple.com/library/archive/samplecode/VwrFrameWork/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000130) | [macOS](https://developer.apple.com/library/archive/samplecode/VwrFrameWork/VwrFrameWork.zip) | 2003-01-14 | | [WDEFColorSample](https://developer.apple.com/library/archive/samplecode/WDEFColorSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000624) | [macOS](https://developer.apple.com/library/archive/samplecode/WDEFColorSample/WDEFColorSample.zip) | 2003-01-30 | | [WDEFPatch](https://developer.apple.com/library/archive/samplecode/WDEFPatch/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000199) | [macOS](https://developer.apple.com/library/archive/samplecode/WDEFPatch/WDEFPatch.zip) | 2003-01-14 | | [Wake100](https://developer.apple.com/library/archive/samplecode/Wake100/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000021) | [macOS](https://developer.apple.com/library/archive/samplecode/Wake100/Wake100.zip) | 2003-01-14 | | [WatchKit Catalog: Using WatchKit Interface Elements](https://developer.apple.com/library/archive/samplecode/WKInterfaceCatalog/Introduction/Intro.html#//apple_ref/doc/uid/TP40015046) | [watchOS\|iOS](https://developer.apple.com/library/archive/samplecode/WatchKitCatalogUsingWatchKitInterfaceElements/WatchKitCatalogUsingWatchKitInterfaceElements.zip) | 2016-09-13 | | [WatchKitAudioRecorder: Audio Recording and Playback](https://developer.apple.com/library/archive/samplecode/WatchKitAudioRecorder/Introduction/Intro.html#//apple_ref/doc/uid/TP40016225) | [watchOS](https://developer.apple.com/library/archive/samplecode/WatchKitAudioRecorderAudioRecordingandPlayback/WatchKitAudioRecorderAudioRecordingandPlayback.zip) | 2015-09-16 | | [WatchPuzzle: Using SceneKit and SpriteKit on watchOS](https://developer.apple.com/library/archive/samplecode/WatchPuzzle/Introduction/Intro.html#//apple_ref/doc/uid/TP40017284) | [watchOS](https://developer.apple.com/library/archive/samplecode/WatchPuzzleUsingSceneKitandSpriteKitonwatchOS/WatchPuzzleUsingSceneKitandSpriteKitonwatchOS.zip) | 2016-10-27 | | [Watcher](https://developer.apple.com/library/archive/samplecode/Watcher/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004054) | [macOS](https://developer.apple.com/library/archive/samplecode/Watcher/Watcher.zip) | 2006-08-04 | | [WaveTable Sounds](https://developer.apple.com/library/archive/samplecode/WaveTable_Sounds/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000353) | [macOS](https://developer.apple.com/library/archive/samplecode/WaveTable_Sounds/WaveTable_Sounds.zip) | 2003-01-14 | | [WaveformViewDemo](https://developer.apple.com/library/archive/samplecode/WaveformViewDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008653) | [macOS](https://developer.apple.com/library/archive/samplecode/WaveformViewDemo/WaveformViewDemo.zip) | 2009-04-15 | | [WcharDataFormatter](https://developer.apple.com/library/archive/samplecode/WcharDataFormatter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003898) | [Xcode Developer Tools\|macOS](https://developer.apple.com/library/archive/samplecode/WcharDataFormatter/WcharDataFormatter.zip) | 2006-03-31 | | [WebKitCIPlugIn](https://developer.apple.com/library/archive/samplecode/WebKitCIPlugIn/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003610) | [macOS](https://developer.apple.com/library/archive/samplecode/WebKitCIPlugIn/WebKitCIPlugIn.zip) | 2005-11-28 | | [WebKitPluginStarter](https://developer.apple.com/library/archive/samplecode/WebKitPluginStarter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004346) | [macOS](https://developer.apple.com/library/archive/samplecode/WebKitPluginStarter/WebKitPluginStarter.zip) | 2007-06-06 | | [WebKitPluginWithJavaScript](https://developer.apple.com/library/archive/samplecode/WebKitPluginWithJavaScript/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004348) | [macOS](https://developer.apple.com/library/archive/samplecode/WebKitPluginWithJavaScript/WebKitPluginWithJavaScript.zip) | 2007-06-06 | | [WebKitPluginWithSimpleGUI](https://developer.apple.com/library/archive/samplecode/WebKitPluginWithSimpleGUI/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004350) | [macOS](https://developer.apple.com/library/archive/samplecode/WebKitPluginWithSimpleGUI/WebKitPluginWithSimpleGUI.zip) | 2007-06-04 | | [WhackedTV](https://developer.apple.com/library/archive/samplecode/WhackedTV/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003727) | [macOS](https://developer.apple.com/library/archive/samplecode/WhackedTV/WhackedTV.zip) | 2011-09-06 | | [WhichWayIsUp](https://developer.apple.com/library/archive/samplecode/WhichWayIsUp/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007330) | [iOS](https://developer.apple.com/library/archive/samplecode/WhichWayIsUp/WhichWayIsUp.zip) | 2010-06-24 | | [WiTap](https://developer.apple.com/library/archive/samplecode/WiTap/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007321) | [iOS](https://developer.apple.com/library/archive/samplecode/WiTap/WiTap.zip) | 2014-08-05 | | [WikiSampleThemeWithCSS](https://developer.apple.com/library/archive/samplecode/WikiServerSampleTheme1/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007724) | [macOS](https://developer.apple.com/library/archive/samplecode/WikiServerSampleTheme1/WikiServerSampleTheme1.zip) | 2008-06-02 | | [WikiSampleThemeWithJavaScript](https://developer.apple.com/library/archive/samplecode/WikiServerSampleTheme2/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007725) | [macOS](https://developer.apple.com/library/archive/samplecode/WikiServerSampleTheme2/WikiServerSampleTheme2.zip) | 2008-06-02 | | [Win2MacCounterSamples](https://developer.apple.com/library/archive/samplecode/Win2MacCounterSamples/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000739) | [macOS](https://developer.apple.com/library/archive/samplecode/Win2MacCounterSamples/Win2MacCounterSamples.zip) | 2003-01-14 | | [WindowColors](https://developer.apple.com/library/archive/samplecode/WindowColors/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000625) | [macOS](https://developer.apple.com/library/archive/samplecode/WindowColors/WindowColors.zip) | 2003-01-30 | | [WindowFun](https://developer.apple.com/library/archive/samplecode/WindowFun/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000651) | [macOS](https://developer.apple.com/library/archive/samplecode/WindowFun/WindowFun.zip) | 2005-08-24 | | [WiredSprites](https://developer.apple.com/library/archive/samplecode/WiredSprites/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001044) | [macOS](https://developer.apple.com/library/archive/samplecode/WiredSprites/WiredSprites.zip) | 2003-02-25 | | [WiredSprites.win](https://developer.apple.com/library/archive/samplecode/WiredSprites.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001012) | [macOS](https://developer.apple.com/library/archive/samplecode/WiredSprites/WiredSprites.win.zip) | 2003-02-25 | | [WiredSpritesJava](https://developer.apple.com/library/archive/samplecode/WiredSpritesJava/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001011) | [macOS](https://developer.apple.com/library/archive/samplecode/WiredSpritesJava/WiredSpritesJava.zip) | 2003-02-25 | | [WorldRayPickSample](https://developer.apple.com/library/archive/samplecode/WorldRayPickSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000140) | [macOS](https://developer.apple.com/library/archive/samplecode/WorldRayPickSample/WorldRayPickSample.zip) | 2003-01-14 | | [Worm](https://developer.apple.com/library/archive/samplecode/Worm/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003659) | [macOS](https://developer.apple.com/library/archive/samplecode/Worm/Worm.zip) | 2012-06-04 | | [WritableFileDemo](https://developer.apple.com/library/archive/samplecode/WritableFileDemo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004040) | [macOS](https://developer.apple.com/library/archive/samplecode/WritableFileDemo/WritableFileDemo.zip) | 2006-08-01 | | [Writing Subtitles to a Movie from the Command Line for OS X](https://developer.apple.com/library/archive/samplecode/avsubtitleswriterOSX/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013409) | [macOS](https://developer.apple.com/library/archive/samplecode/avsubtitleswriterOSX/avsubtitleswriterOSX.zip) | 2013-06-11 | | [X11CallCarbonAndCocoa](https://developer.apple.com/library/archive/samplecode/X11CallCarbonAndCocoa/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000729) | [macOS](https://developer.apple.com/library/archive/samplecode/X11CallCarbonAndCocoa/X11CallCarbonAndCocoa.zip) | 2003-07-28 | | [XMLBrowser](https://developer.apple.com/library/archive/samplecode/XMLBrowser/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008875) | [macOS](https://developer.apple.com/library/archive/samplecode/XMLBrowser/XMLBrowser.zip) | 2012-05-30 | | [XMLPerformance](https://developer.apple.com/library/archive/samplecode/XMLPerformance/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008094) | [iOS](https://developer.apple.com/library/archive/samplecode/XMLPerformance/XMLPerformance.zip) | 2015-09-16 | | [XML_Transport](https://developer.apple.com/library/archive/samplecode/XML_Transport/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001100) | [macOS](https://developer.apple.com/library/archive/samplecode/XML_Transport/XML_Transport.zip) | 2003-01-14 | | [XcodeClientServer](https://developer.apple.com/library/archive/samplecode/XcodeClientServer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003704) | [Xcode Developer Tools\|macOS](https://developer.apple.com/library/archive/samplecode/XcodeClientServer/XcodeClientServer.zip) | 2005-06-06 | | [YASTControl](https://developer.apple.com/library/archive/samplecode/YASTControl/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000626) | [macOS](https://developer.apple.com/library/archive/samplecode/YASTControl/YASTControl.zip) | 2003-10-27 | | [ZAM](https://developer.apple.com/library/archive/samplecode/ZAM/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000063) | [macOS](https://developer.apple.com/library/archive/samplecode/ZAM/ZAM.zip) | 2003-01-14 | | [ZapTCP Application](https://developer.apple.com/library/archive/samplecode/ZapTCP_Application/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000272) | [macOS](https://developer.apple.com/library/archive/samplecode/ZapTCP_Application/ZapTCP_Application.zip) | 2003-01-14 | | [ZipBrowser](https://developer.apple.com/library/archive/samplecode/ZipBrowser/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007830) | [macOS](https://developer.apple.com/library/archive/samplecode/ZipBrowser/ZipBrowser.zip) | 2009-06-03 | | [Zoo Tutorial](https://developer.apple.com/library/archive/samplecode/Zoo_Tutorial/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001013) | [macOS](https://developer.apple.com/library/archive/samplecode/Zoo_Tutorial/Zoo_Tutorial.zip) | 2003-01-14 | | [ZoomRecter](https://developer.apple.com/library/archive/samplecode/ZoomRecter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000178) | [macOS](https://developer.apple.com/library/archive/samplecode/ZoomRecter/ZoomRecter.zip) | 2003-10-10 | | [ZoomWindow](https://developer.apple.com/library/archive/samplecode/ZoomWindow/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000627) | [macOS](https://developer.apple.com/library/archive/samplecode/ZoomWindow/ZoomWindow.zip) | 2003-01-30 | | [ZoomingPDFViewer](https://developer.apple.com/library/archive/samplecode/ZoomingPDFViewer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010281) | [iOS](https://developer.apple.com/library/archive/samplecode/ZoomingPDFViewer/ZoomingPDFViewer.zip) | 2017-04-27 | | [addflashactions](https://developer.apple.com/library/archive/samplecode/addflashactions/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001062) | [macOS](https://developer.apple.com/library/archive/samplecode/addflashactions/addflashactions.zip) | 2003-02-25 | | [addflashactions.win](https://developer.apple.com/library/archive/samplecode/addflashactions.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001063) | [macOS](https://developer.apple.com/library/archive/samplecode/addflashactions/addflashactions.win.zip) | 2003-02-25 | | [addhtactions](https://developer.apple.com/library/archive/samplecode/addhtactions/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001064) | [macOS](https://developer.apple.com/library/archive/samplecode/addhtactions/addhtactions.zip) | 2003-02-25 | | [addhtactions.win](https://developer.apple.com/library/archive/samplecode/addhtactions.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001065) | [macOS](https://developer.apple.com/library/archive/samplecode/addhtactions/addhtactions.win.zip) | 2003-02-25 | | [addvractions](https://developer.apple.com/library/archive/samplecode/addvractions/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001017) | [macOS](https://developer.apple.com/library/archive/samplecode/addvractions/addvractions.zip) | 2003-01-14 | | [addvractions.win](https://developer.apple.com/library/archive/samplecode/addvractions.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001018) | [macOS](https://developer.apple.com/library/archive/samplecode/addvractions/addvractions.win.zip) | 2003-01-14 | | [aiffwriter.win](https://developer.apple.com/library/archive/samplecode/aiffwriter.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000905) | [macOS](https://developer.apple.com/library/archive/samplecode/aiffwriter/aiffwriter.win.zip) | 2003-01-14 | | [audioburntest](https://developer.apple.com/library/archive/samplecode/audioburntest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000462) | [macOS](https://developer.apple.com/library/archive/samplecode/audioburntest/audioburntest.zip) | 2003-01-14 | | [audiocodec](https://developer.apple.com/library/archive/samplecode/audiocodec/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000812) | [macOS](https://developer.apple.com/library/archive/samplecode/audiocodec/audiocodec.zip) | 2003-01-14 | | [audiocodec.win](https://developer.apple.com/library/archive/samplecode/audiocodec.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000813) | [macOS](https://developer.apple.com/library/archive/samplecode/audiocodec/audiocodec.win.zip) | 2003-01-14 | | [audioconverter](https://developer.apple.com/library/archive/samplecode/audioconverter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000906) | [macOS](https://developer.apple.com/library/archive/samplecode/audioconverter/audioconverter.zip) | 2003-01-14 | | [audioconverter.win](https://developer.apple.com/library/archive/samplecode/audioconverter.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000907) | [macOS](https://developer.apple.com/library/archive/samplecode/audioconverter/audioconverter.win.zip) | 2003-01-14 | | [aurioTouch](https://developer.apple.com/library/archive/samplecode/aurioTouch/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007770) | [iOS](https://developer.apple.com/library/archive/samplecode/aurioTouch/aurioTouch.zip) | 2016-08-12 | | [aurioTouch2](https://developer.apple.com/library/archive/samplecode/aurioTouch2/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011369) | [iOS](https://developer.apple.com/library/archive/samplecode/aurioTouch2/aurioTouch2.zip) | 2011-12-06 | | [avTouch](https://developer.apple.com/library/archive/samplecode/avTouch/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008636) | [iOS](https://developer.apple.com/library/archive/samplecode/avTouch/avTouch.zip) | 2014-02-12 | | [avmetadataeditor](https://developer.apple.com/library/archive/samplecode/avmetadataeditor/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010760) | [macOS](https://developer.apple.com/library/archive/samplecode/avmetadataeditor/avmetadataeditor.zip) | 2014-10-16 | | [avvideowall](https://developer.apple.com/library/archive/samplecode/avvideowall/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011122) | [macOS](https://developer.apple.com/library/archive/samplecode/avvideowall/avvideowall.zip) | 2011-08-25 | | [bMoviePalette](https://developer.apple.com/library/archive/samplecode/bMoviePalette/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000843) | [macOS](https://developer.apple.com/library/archive/samplecode/bMoviePalette/bMoviePalette.zip) | 2003-01-14 | | [bMoviePaletteCocoa](https://developer.apple.com/library/archive/samplecode/bMoviePaletteCocoa/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000379) | [Xcode Developer Tools](https://developer.apple.com/library/archive/samplecode/bMoviePaletteCocoa/bMoviePaletteCocoa.zip) | 2003-01-14 | | [bulkerase](https://developer.apple.com/library/archive/samplecode/bulkerase/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000463) | [macOS](https://developer.apple.com/library/archive/samplecode/bulkerase/bulkerase.zip) | 2003-01-14 | | [databurntest](https://developer.apple.com/library/archive/samplecode/databurntest/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000466) | [macOS](https://developer.apple.com/library/archive/samplecode/databurntest/databurntest.zip) | 2003-01-14 | | [deleteEmptyDir](https://developer.apple.com/library/archive/samplecode/deleteEmptyDir/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000032) | [macOS](https://developer.apple.com/library/archive/samplecode/deleteEmptyDir/deleteEmptyDir.zip) | 2003-01-14 | | [dist_fft](https://developer.apple.com/library/archive/samplecode/dist_fft/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003377) | [macOS](https://developer.apple.com/library/archive/samplecode/dist_fft/dist_fft.zip) | 2004-08-23 | | [echoTouch - Using the Voice Processing I/O audio unit](https://developer.apple.com/library/archive/samplecode/echoTouch/Introduction/Intro.html#//apple_ref/doc/uid/TP40017575) | [iOS](https://developer.apple.com/library/archive/samplecode/echoTouch-UsingtheVoiceProcessingIOaudiounit/echoTouch-UsingtheVoiceProcessingIOaudiounit.zip) | 2016-11-29 | | [enetlognke](https://developer.apple.com/library/archive/samplecode/enetlognke/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003579) | [macOS](https://developer.apple.com/library/archive/samplecode/enetlognke/enetlognke.zip) | 2014-05-12 | | [ficycle](https://developer.apple.com/library/archive/samplecode/ficycle/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000033) | [macOS](https://developer.apple.com/library/archive/samplecode/ficycle/ficycle.zip) | 2003-01-14 | | [filesystem_examples](https://developer.apple.com/library/archive/samplecode/filesystem_examples/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003581) | [macOS](https://developer.apple.com/library/archive/samplecode/filesystem_examples/filesystem_examples.zip) | 2006-01-10 | | [graphicimporter.win](https://developer.apple.com/library/archive/samplecode/graphicimporter.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000890) | [macOS](https://developer.apple.com/library/archive/samplecode/graphicimporter/graphicimporter.win.zip) | 2003-01-14 | | [hacktv](https://developer.apple.com/library/archive/samplecode/hacktv/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000802) | [macOS](https://developer.apple.com/library/archive/samplecode/hacktv/hacktv.zip) | 2003-01-14 | | [hacktv.win](https://developer.apple.com/library/archive/samplecode/hacktv.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000804) | [macOS](https://developer.apple.com/library/archive/samplecode/hacktv/hacktv.win.zip) | 2003-01-14 | | [iAdInterstitialSuite](https://developer.apple.com/library/archive/samplecode/iAdInterstitialSuite/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010627) | [iOS](https://developer.apple.com/library/archive/samplecode/iAdInterstitialSuite/iAdInterstitialSuite.zip) | 2015-08-13 | | [iAdSuite](https://developer.apple.com/library/archive/samplecode/iAdSuite/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010198) | [iOS](https://developer.apple.com/library/archive/samplecode/iAdSuite/iAdSuite.zip) | 2013-05-28 | | [iAdSuite with Storyboards](https://developer.apple.com/library/archive/samplecode/iAdSuite_Storyboard/Introduction/Intro.html#//apple_ref/doc/uid/DTS40013458) | [iOS](https://developer.apple.com/library/archive/samplecode/iAdSuitewithStoryboards/iAdSuitewithStoryboards.zip) | 2015-10-29 | | [iChatAppleScriptSamples](https://developer.apple.com/library/archive/samplecode/iChatAppleScriptSamples/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004062) | [macOS](https://developer.apple.com/library/archive/samplecode/iChatAppleScriptSamples/iChatAppleScriptSamples.zip) | 2018-05-03 | | [iChatStatusFromApplication](https://developer.apple.com/library/archive/samplecode/iChatStatusFromApplication/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004352) | [macOS](https://developer.apple.com/library/archive/samplecode/iChatStatusFromApplication/iChatStatusFromApplication.zip) | 2011-08-25 | | [iChatTheater](https://developer.apple.com/library/archive/samplecode/iChatTheater/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004197) | [macOS](https://developer.apple.com/library/archive/samplecode/iChatTheater/iChatTheater.zip) | 2012-08-27 | | [iGetKeys](https://developer.apple.com/library/archive/samplecode/iGetKeys/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000186) | [macOS](https://developer.apple.com/library/archive/samplecode/iGetKeys/iGetKeys.zip) | 2003-07-10 | | [iPhoneButtons](https://developer.apple.com/library/archive/samplecode/iPhoneButtons/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004474) | [Safari](https://developer.apple.com/library/archive/samplecode/iPhoneButtons/iPhoneButtons.zip) | 2007-12-03 | | [iPhoneCoreDataRecipes](https://developer.apple.com/library/archive/samplecode/iPhoneCoreDataRecipes/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008913) | [iOS](https://developer.apple.com/library/archive/samplecode/iPhoneCoreDataRecipes/iPhoneCoreDataRecipes.zip) | 2017-07-20 | | [iPhoneIntegration](https://developer.apple.com/library/archive/samplecode/iPhoneIntegration/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004483) | [Safari\|iOS](https://developer.apple.com/library/archive/samplecode/iPhoneIntegration/iPhoneIntegration.zip) | 2008-06-25 | | [iPhoneListPatterns](https://developer.apple.com/library/archive/samplecode/iPhoneListPatterns/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004469) | [Safari\|iOS](https://developer.apple.com/library/archive/samplecode/iPhoneListPatterns/iPhoneListPatterns.zip) | 2007-10-08 | | [iPhoneOrientation](https://developer.apple.com/library/archive/samplecode/iPhoneOrientation/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004520) | [Safari\|iOS](https://developer.apple.com/library/archive/samplecode/iPhoneOrientation/iPhoneOrientation.zip) | 2007-12-04 | | [iPodNanos](https://developer.apple.com/library/archive/samplecode/HTML_video_with_CSS_effects/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007722) | [Safari\|iOS\|macOS](https://developer.apple.com/library/archive/samplecode/HTML_video_with_CSS_effects/HTML_video_with_CSS_effects.zip) | 2008-08-06 | | [iSpend](https://developer.apple.com/library/archive/samplecode/iSpend/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003625) | [macOS](https://developer.apple.com/library/archive/samplecode/iSpend/iSpend.zip) | 2012-06-07 | | [iSpendPlugin](https://developer.apple.com/library/archive/samplecode/iSpendPlugin/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008862) | [macOS](https://developer.apple.com/library/archive/samplecode/iSpendPlugin/iSpendPlugin.zip) | 2012-06-07 | | [iSudoku](https://developer.apple.com/library/archive/samplecode/iSudoku/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004395) | [Safari\|iOS](https://developer.apple.com/library/archive/samplecode/iSudoku/iSudoku.zip) | 2007-10-29 | | [iSync Sample Document](https://developer.apple.com/library/archive/samplecode/iSyncSampleDocument/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003992) | [macOS](https://developer.apple.com/library/archive/samplecode/iSyncSampleDocument/iSyncSampleDocument.zip) | 2006-08-01 | | [iTunesController](https://developer.apple.com/library/archive/samplecode/iTunesController/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003879) | [macOS](https://developer.apple.com/library/archive/samplecode/iTunesController/iTunesController.zip) | 2006-02-23 | | [icon cache demo](https://developer.apple.com/library/archive/samplecode/icon_cache_demo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000581) | [macOS](https://developer.apple.com/library/archive/samplecode/icon_cache_demo/icon_cache_demo.zip) | 2003-01-30 | | [ictbSample](https://developer.apple.com/library/archive/samplecode/ictbSample/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000584) | [macOS](https://developer.apple.com/library/archive/samplecode/ictbSample/ictbSample.zip) | 2003-01-30 | | [iso9660](https://developer.apple.com/library/archive/samplecode/iso9660/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000429) | [macOS](https://developer.apple.com/library/archive/samplecode/iso9660/iso9660.zip) | 2003-01-14 | | [jGNE Helper](https://developer.apple.com/library/archive/samplecode/jGNE_Helper/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000188) | [macOS](https://developer.apple.com/library/archive/samplecode/jGNE_Helper/jGNE_Helper.zip) | 2003-01-14 | | [jGNEFilter](https://developer.apple.com/library/archive/samplecode/jGNEFilter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000189) | [macOS](https://developer.apple.com/library/archive/samplecode/jGNEFilter/jGNEFilter.zip) | 2003-01-14 | | [kcapApp](https://developer.apple.com/library/archive/samplecode/kcapApp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000586) | [macOS](https://developer.apple.com/library/archive/samplecode/kcapApp/kcapApp.zip) | 2003-01-30 | | [ledApp](https://developer.apple.com/library/archive/samplecode/ledApp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000006) | [macOS](https://developer.apple.com/library/archive/samplecode/ledApp/ledApp.zip) | 2003-01-14 | | [makeeffectslideshow.win](https://developer.apple.com/library/archive/samplecode/makeeffectslideshow.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000830) | [macOS](https://developer.apple.com/library/archive/samplecode/makeeffectslideshow/makeeffectslideshow.win.zip) | 2003-02-25 | | [mdiplayer.win](https://developer.apple.com/library/archive/samplecode/mdiplayer.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000768) | [macOS](https://developer.apple.com/library/archive/samplecode/mdiplayer/mdiplayer.win.zip) | 2003-01-14 | | [mfc.win](https://developer.apple.com/library/archive/samplecode/mfc.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000769) | [macOS](https://developer.apple.com/library/archive/samplecode/mfc/mfc.win.zip) | 2003-01-14 | | [offscreen.win](https://developer.apple.com/library/archive/samplecode/offscreen.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000772) | [macOS](https://developer.apple.com/library/archive/samplecode/offscreen/offscreen.win.zip) | 2003-01-14 | | [pARk](https://developer.apple.com/library/archive/samplecode/pARk/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011083) | [iOS](https://developer.apple.com/library/archive/samplecode/pARk/pARk.zip) | 2012-06-26 | | [qdmediahandler](https://developer.apple.com/library/archive/samplecode/qdmediahandler/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000820) | [macOS](https://developer.apple.com/library/archive/samplecode/qdmediahandler/qdmediahandler.zip) | 2003-01-14 | | [qdmediahandler.win](https://developer.apple.com/library/archive/samplecode/qdmediahandler.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000821) | [macOS](https://developer.apple.com/library/archive/samplecode/qdmediahandler/qdmediahandler.win.zip) | 2003-01-14 | | [qdmediamaker](https://developer.apple.com/library/archive/samplecode/qdmediamaker/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000822) | [macOS](https://developer.apple.com/library/archive/samplecode/qdmediamaker/qdmediamaker.zip) | 2003-01-14 | | [qdmediamaker.win](https://developer.apple.com/library/archive/samplecode/qdmediamaker.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000823) | [macOS](https://developer.apple.com/library/archive/samplecode/qdmediamaker/qdmediamaker.win.zip) | 2003-01-14 | | [qt3dtween](https://developer.apple.com/library/archive/samplecode/qt3dtween/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000849) | [macOS](https://developer.apple.com/library/archive/samplecode/qt3dtween/qt3dtween.zip) | 2003-01-14 | | [qt3dtween.win](https://developer.apple.com/library/archive/samplecode/qt3dtween.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000850) | [macOS](https://developer.apple.com/library/archive/samplecode/qt3dtween/qt3dtween.win.zip) | 2003-01-14 | | [qtactiontargets](https://developer.apple.com/library/archive/samplecode/qtactiontargets/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001068) | [macOS](https://developer.apple.com/library/archive/samplecode/qtactiontargets/qtactiontargets.zip) | 2003-02-25 | | [qtactiontargets.win](https://developer.apple.com/library/archive/samplecode/qtactiontargets.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001069) | [macOS](https://developer.apple.com/library/archive/samplecode/qtactiontargets/qtactiontargets.win.zip) | 2003-02-25 | | [qtaddeffectseg](https://developer.apple.com/library/archive/samplecode/qtaddeffectseg/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000831) | [macOS](https://developer.apple.com/library/archive/samplecode/qtaddeffectseg/qtaddeffectseg.zip) | 2003-02-25 | | [qtaddeffectseg.win](https://developer.apple.com/library/archive/samplecode/qtaddeffectseg.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000832) | [macOS](https://developer.apple.com/library/archive/samplecode/qtaddeffectseg/qtaddeffectseg.win.zip) | 2003-02-25 | | [qtbigscreen](https://developer.apple.com/library/archive/samplecode/qtbigscreen/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000851) | [macOS](https://developer.apple.com/library/archive/samplecode/qtbigscreen/qtbigscreen.zip) | 2003-01-14 | | [qtbigscreen.win](https://developer.apple.com/library/archive/samplecode/qtbigscreen.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000852) | [macOS](https://developer.apple.com/library/archive/samplecode/qtbigscreen/qtbigscreen.win.zip) | 2003-01-14 | | [qtbroadcast](https://developer.apple.com/library/archive/samplecode/qtbroadcast/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001046) | [macOS](https://developer.apple.com/library/archive/samplecode/qtbroadcast/qtbroadcast.zip) | 2003-03-06 | | [qtcapture](https://developer.apple.com/library/archive/samplecode/qtcapture/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000805) | [macOS](https://developer.apple.com/library/archive/samplecode/qtcapture/qtcapture.zip) | 2003-01-14 | | [qtcapture.win](https://developer.apple.com/library/archive/samplecode/qtcapture.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000806) | [macOS](https://developer.apple.com/library/archive/samplecode/qtcapture/qtcapture.win.zip) | 2003-01-14 | | [qtchannels](https://developer.apple.com/library/archive/samplecode/qtchannels/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000853) | [macOS](https://developer.apple.com/library/archive/samplecode/qtchannels/qtchannels.zip) | 2003-01-14 | | [qtchannels.win](https://developer.apple.com/library/archive/samplecode/qtchannels.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000854) | [macOS](https://developer.apple.com/library/archive/samplecode/qtchannels/qtchannels.win.zip) | 2003-01-14 | | [qtcompress](https://developer.apple.com/library/archive/samplecode/qtcompress/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000773) | [macOS](https://developer.apple.com/library/archive/samplecode/qtcompress/qtcompress.zip) | 2003-01-14 | | [qtcompress.win](https://developer.apple.com/library/archive/samplecode/qtcompress.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000774) | [macOS](https://developer.apple.com/library/archive/samplecode/qtcompress/qtcompress.win.zip) | 2003-01-14 | | [qtcontroller](https://developer.apple.com/library/archive/samplecode/qtcontroller/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000775) | [macOS](https://developer.apple.com/library/archive/samplecode/qtcontroller/qtcontroller.zip) | 2003-01-14 | | [qtcontroller.win](https://developer.apple.com/library/archive/samplecode/qtcontroller.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000776) | [macOS](https://developer.apple.com/library/archive/samplecode/qtcontroller/qtcontroller.win.zip) | 2003-01-14 | | [qtcreatemovie](https://developer.apple.com/library/archive/samplecode/qtcreatemovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000777) | [macOS](https://developer.apple.com/library/archive/samplecode/qtcreatemovie/qtcreatemovie.zip) | 2003-01-14 | | [qtcreatemovie.win](https://developer.apple.com/library/archive/samplecode/qtcreatemovie.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000778) | [macOS](https://developer.apple.com/library/archive/samplecode/qtcreatemovie/qtcreatemovie.win.zip) | 2003-01-14 | | [qtcustombutton](https://developer.apple.com/library/archive/samplecode/qtcustombutton/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000855) | [macOS](https://developer.apple.com/library/archive/samplecode/qtcustombutton/qtcustombutton.zip) | 2003-01-14 | | [qtcustombutton.win](https://developer.apple.com/library/archive/samplecode/qtcustombutton.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000856) | [macOS](https://developer.apple.com/library/archive/samplecode/qtcustombutton/qtcustombutton.win.zip) | 2003-01-14 | | [qtdataexchange](https://developer.apple.com/library/archive/samplecode/qtdataexchange/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000893) | [macOS](https://developer.apple.com/library/archive/samplecode/qtdataexchange/qtdataexchange.zip) | 2003-01-14 | | [qtdataexchange.win](https://developer.apple.com/library/archive/samplecode/qtdataexchange.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000894) | [macOS](https://developer.apple.com/library/archive/samplecode/qtdataexchange/qtdataexchange.win.zip) | 2006-07-20 | | [qtdataref](https://developer.apple.com/library/archive/samplecode/qtdataref/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000779) | [macOS](https://developer.apple.com/library/archive/samplecode/qtdataref/qtdataref.zip) | 2003-01-24 | | [qtdataref.win](https://developer.apple.com/library/archive/samplecode/qtdataref.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000780) | [macOS](https://developer.apple.com/library/archive/samplecode/qtdataref/qtdataref.win.zip) | 2003-01-24 | | [qteffects](https://developer.apple.com/library/archive/samplecode/qteffects/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000833) | [macOS](https://developer.apple.com/library/archive/samplecode/qteffects/qteffects.zip) | 2003-01-14 | | [qteffects.win](https://developer.apple.com/library/archive/samplecode/qteffects.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000836) | [macOS](https://developer.apple.com/library/archive/samplecode/qteffects/qteffects.win.zip) | 2003-01-14 | | [qtfiletransfer](https://developer.apple.com/library/archive/samplecode/qtfiletransfer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000857) | [macOS](https://developer.apple.com/library/archive/samplecode/qtfiletransfer/qtfiletransfer.zip) | 2003-01-14 | | [qtfiletransfer.win](https://developer.apple.com/library/archive/samplecode/qtfiletransfer.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000858) | [macOS](https://developer.apple.com/library/archive/samplecode/qtfiletransfer/qtfiletransfer.win.zip) | 2003-01-14 | | [qtflattentohandle](https://developer.apple.com/library/archive/samplecode/qtflattentohandle/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000895) | [macOS](https://developer.apple.com/library/archive/samplecode/qtflattentohandle/qtflattentohandle.zip) | 2003-01-14 | | [qtflattentohandle.win](https://developer.apple.com/library/archive/samplecode/qtflattentohandle.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000896) | [macOS](https://developer.apple.com/library/archive/samplecode/qtflattentohandle/qtflattentohandle.win.zip) | 2003-01-14 | | [qtframestepper](https://developer.apple.com/library/archive/samplecode/qtframestepper/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000859) | [macOS](https://developer.apple.com/library/archive/samplecode/qtframestepper/qtframestepper.zip) | 2003-01-14 | | [qtframestepper.win](https://developer.apple.com/library/archive/samplecode/qtframestepper.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000860) | [macOS](https://developer.apple.com/library/archive/samplecode/qtframestepper/qtframestepper.win.zip) | 2003-01-14 | | [qtfullscreen](https://developer.apple.com/library/archive/samplecode/qtfullscreen/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000861) | [macOS](https://developer.apple.com/library/archive/samplecode/qtfullscreen/qtfullscreen.zip) | 2003-01-14 | | [qtfullscreen.win](https://developer.apple.com/library/archive/samplecode/qtfullscreen.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000862) | [macOS](https://developer.apple.com/library/archive/samplecode/qtfullscreen/qtfullscreen.win.zip) | 2003-01-14 | | [qtgraphics](https://developer.apple.com/library/archive/samplecode/qtgraphics/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000897) | [macOS](https://developer.apple.com/library/archive/samplecode/qtgraphics/qtgraphics.zip) | 2003-01-14 | | [qtgraphics.win](https://developer.apple.com/library/archive/samplecode/qtgraphics.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000898) | [macOS](https://developer.apple.com/library/archive/samplecode/qtgraphics/qtgraphics.win.zip) | 2003-01-14 | | [qtgraphimp](https://developer.apple.com/library/archive/samplecode/qtgraphimp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000863) | [macOS](https://developer.apple.com/library/archive/samplecode/qtgraphimp/qtgraphimp.zip) | 2003-01-14 | | [qtgraphimp.win](https://developer.apple.com/library/archive/samplecode/qtgraphimp.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000864) | [macOS](https://developer.apple.com/library/archive/samplecode/qtgraphimp/qtgraphimp.win.zip) | 2003-01-14 | | [qthintmovies](https://developer.apple.com/library/archive/samplecode/qthintmovies/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000865) | [macOS](https://developer.apple.com/library/archive/samplecode/qthintmovies/qthintmovies.zip) | 2003-01-14 | | [qthintmovies.win](https://developer.apple.com/library/archive/samplecode/qthintmovies.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000866) | [macOS](https://developer.apple.com/library/archive/samplecode/qthintmovies/qthintmovies.win.zip) | 2003-01-14 | | [qtinfo](https://developer.apple.com/library/archive/samplecode/qtinfo/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000782) | [macOS](https://developer.apple.com/library/archive/samplecode/qtinfo/qtinfo.zip) | 2003-01-14 | | [qtinfo.win](https://developer.apple.com/library/archive/samplecode/qtinfo.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000783) | [macOS](https://developer.apple.com/library/archive/samplecode/qtinfo/qtinfo.win.zip) | 2003-01-14 | | [qtmakemovie](https://developer.apple.com/library/archive/samplecode/qtmakemovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000784) | [macOS](https://developer.apple.com/library/archive/samplecode/qtmakemovie/qtmakemovie.zip) | 2003-01-14 | | [qtmissingcomp](https://developer.apple.com/library/archive/samplecode/qtmissingcomp/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000867) | [macOS](https://developer.apple.com/library/archive/samplecode/qtmissingcomp/qtmissingcomp.zip) | 2003-01-14 | | [qtmissingcomp.win](https://developer.apple.com/library/archive/samplecode/qtmissingcomp.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000868) | [macOS](https://developer.apple.com/library/archive/samplecode/qtmissingcomp/qtmissingcomp.win.zip) | 2003-01-14 | | [qtmoviefromprocs](https://developer.apple.com/library/archive/samplecode/qtmoviefromprocs/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000899) | [macOS](https://developer.apple.com/library/archive/samplecode/qtmoviefromprocs/qtmoviefromprocs.zip) | 2003-01-14 | | [qtmoviefromprocs.win](https://developer.apple.com/library/archive/samplecode/qtmoviefromprocs.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000900) | [macOS](https://developer.apple.com/library/archive/samplecode/qtmoviefromprocs/qtmoviefromprocs.win.zip) | 2003-01-14 | | [qtmoviefromurl](https://developer.apple.com/library/archive/samplecode/qtmoviefromurl/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000869) | [macOS](https://developer.apple.com/library/archive/samplecode/qtmoviefromurl/qtmoviefromurl.zip) | 2003-01-14 | | [qtmoviefromurl.win](https://developer.apple.com/library/archive/samplecode/qtmoviefromurl.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000870) | [macOS](https://developer.apple.com/library/archive/samplecode/qtmoviefromurl/qtmoviefromurl.win.zip) | 2003-01-14 | | [qtmovietrack](https://developer.apple.com/library/archive/samplecode/qtmovietrack/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000786) | [macOS](https://developer.apple.com/library/archive/samplecode/qtmovietrack/qtmovietrack.zip) | 2003-01-14 | | [qtmovietrack.win](https://developer.apple.com/library/archive/samplecode/qtmovietrack.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000787) | [macOS](https://developer.apple.com/library/archive/samplecode/qtmovietrack/qtmovietrack.win.zip) | 2003-01-14 | | [qtmultiimage](https://developer.apple.com/library/archive/samplecode/qtmultiimage/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000871) | [macOS](https://developer.apple.com/library/archive/samplecode/qtmultiimage/qtmultiimage.zip) | 2003-01-14 | | [qtmultiimage.win](https://developer.apple.com/library/archive/samplecode/qtmultiimage.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000872) | [macOS](https://developer.apple.com/library/archive/samplecode/qtmultiimage/qtmultiimage.win.zip) | 2003-01-14 | | [qtmusic](https://developer.apple.com/library/archive/samplecode/qtmusic/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000913) | [macOS](https://developer.apple.com/library/archive/samplecode/qtmusic/qtmusic.zip) | 2003-01-14 | | [qtmusic.win](https://developer.apple.com/library/archive/samplecode/qtmusic.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000914) | [macOS](https://developer.apple.com/library/archive/samplecode/qtmusic/qtmusic.win.zip) | 2003-01-14 | | [qtreadwritejpeg](https://developer.apple.com/library/archive/samplecode/qtreadwritejpeg/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000873) | [macOS](https://developer.apple.com/library/archive/samplecode/qtreadwritejpeg/qtreadwritejpeg.zip) | 2003-01-14 | | [qtreadwritejpeg.win](https://developer.apple.com/library/archive/samplecode/qtreadwritejpeg.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000874) | [macOS](https://developer.apple.com/library/archive/samplecode/qtreadwritejpeg/qtreadwritejpeg.win.zip) | 2003-01-14 | | [qtshell](https://developer.apple.com/library/archive/samplecode/qtshell/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000788) | [macOS](https://developer.apple.com/library/archive/samplecode/qtshell/qtshell.zip) | 2003-10-27 | | [qtshell.win](https://developer.apple.com/library/archive/samplecode/qtshell.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000789) | [macOS](https://developer.apple.com/library/archive/samplecode/qtshell/qtshell.win.zip) | 2003-10-27 | | [qtshellCEvents](https://developer.apple.com/library/archive/samplecode/qtshellCEvents/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000790) | [macOS](https://developer.apple.com/library/archive/samplecode/qtshellCEvents/qtshellCEvents.zip) | 2003-01-14 | | [qtshellCEvents.win](https://developer.apple.com/library/archive/samplecode/qtshellCEvents.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000791) | [macOS](https://developer.apple.com/library/archive/samplecode/qtshellCEvents/qtshellCEvents.win.zip) | 2003-01-14 | | [qtshortcut](https://developer.apple.com/library/archive/samplecode/qtshortcut/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000875) | [macOS](https://developer.apple.com/library/archive/samplecode/qtshortcut/qtshortcut.zip) | 2003-01-14 | | [qtshortcut.win](https://developer.apple.com/library/archive/samplecode/qtshortcut.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000876) | [macOS](https://developer.apple.com/library/archive/samplecode/qtshortcut/qtshortcut.win.zip) | 2003-01-14 | | [qtshoweffect](https://developer.apple.com/library/archive/samplecode/qtshoweffect/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000838) | [macOS](https://developer.apple.com/library/archive/samplecode/qtshoweffect/qtshoweffect.zip) | 2003-02-25 | | [qtshoweffect.win](https://developer.apple.com/library/archive/samplecode/qtshoweffect.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000839) | [macOS](https://developer.apple.com/library/archive/samplecode/qtshoweffect/qtshoweffect.win.zip) | 2003-02-25 | | [qtskins](https://developer.apple.com/library/archive/samplecode/qtskins/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000877) | [macOS](https://developer.apple.com/library/archive/samplecode/qtskins/qtskins.zip) | 2003-01-14 | | [qtskins.win](https://developer.apple.com/library/archive/samplecode/qtskins.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000878) | [macOS](https://developer.apple.com/library/archive/samplecode/qtskins/qtskins.win.zip) | 2003-01-14 | | [qtsndtween](https://developer.apple.com/library/archive/samplecode/qtsndtween/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000916) | [macOS](https://developer.apple.com/library/archive/samplecode/qtsndtween/qtsndtween.zip) | 2003-01-14 | | [qtsndtween.win](https://developer.apple.com/library/archive/samplecode/qtsndtween.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000917) | [macOS](https://developer.apple.com/library/archive/samplecode/qtsndtween/qtsndtween.win.zip) | 2003-01-14 | | [qtsprites](https://developer.apple.com/library/archive/samplecode/qtsprites/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001070) | [macOS](https://developer.apple.com/library/archive/samplecode/qtsprites/qtsprites.zip) | 2003-02-25 | | [qtsprites.win](https://developer.apple.com/library/archive/samplecode/qtsprites.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001071) | [macOS](https://developer.apple.com/library/archive/samplecode/qtsprites/qtsprites.win.zip) | 2003-02-25 | | [qtspritesplus](https://developer.apple.com/library/archive/samplecode/qtspritesplus/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001072) | [macOS](https://developer.apple.com/library/archive/samplecode/qtspritesplus/qtspritesplus.zip) | 2003-02-25 | | [qtspritesplus.win](https://developer.apple.com/library/archive/samplecode/qtspritesplus.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001073) | [macOS](https://developer.apple.com/library/archive/samplecode/qtspritesplus/qtspritesplus.win.zip) | 2003-02-25 | | [qtstdcompr](https://developer.apple.com/library/archive/samplecode/qtstdcompr/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000879) | [macOS](https://developer.apple.com/library/archive/samplecode/qtstdcompr/qtstdcompr.zip) | 2003-01-14 | | [qtstdcompr.win](https://developer.apple.com/library/archive/samplecode/qtstdcompr.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000880) | [macOS](https://developer.apple.com/library/archive/samplecode/qtstdcompr/qtstdcompr.win.zip) | 2003-01-14 | | [qtstreaming](https://developer.apple.com/library/archive/samplecode/qtstreaming/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001051) | [macOS](https://developer.apple.com/library/archive/samplecode/qtstreaming/qtstreaming.zip) | 2003-01-14 | | [qtstreaming.win](https://developer.apple.com/library/archive/samplecode/qtstreaming.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001052) | [macOS](https://developer.apple.com/library/archive/samplecode/qtstreaming/qtstreaming.win.zip) | 2003-01-14 | | [qtstreammsg](https://developer.apple.com/library/archive/samplecode/qtstreammsg/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001053) | [macOS](https://developer.apple.com/library/archive/samplecode/qtstreammsg/qtstreammsg.zip) | 2003-01-14 | | [qtstreammsg.win](https://developer.apple.com/library/archive/samplecode/qtstreammsg.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001054) | [macOS](https://developer.apple.com/library/archive/samplecode/qtstreammsg/qtstreammsg.win.zip) | 2003-01-14 | | [qtstreamsplicer](https://developer.apple.com/library/archive/samplecode/qtstreamsplicer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001055) | [macOS](https://developer.apple.com/library/archive/samplecode/qtstreamsplicer/qtstreamsplicer.zip) | 2003-01-14 | | [qtstreamsplicer.win](https://developer.apple.com/library/archive/samplecode/qtstreamsplicer.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001056) | [macOS](https://developer.apple.com/library/archive/samplecode/qtstreamsplicer/qtstreamsplicer.win.zip) | 2003-01-14 | | [qttext](https://developer.apple.com/library/archive/samplecode/qttext/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001015) | [macOS](https://developer.apple.com/library/archive/samplecode/qttext/qttext.zip) | 2003-01-14 | | [qttext.win](https://developer.apple.com/library/archive/samplecode/qttext.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001016) | [macOS](https://developer.apple.com/library/archive/samplecode/qttext/qttext.win.zip) | 2003-01-14 | | [qttimecode](https://developer.apple.com/library/archive/samplecode/qttimecode/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001058) | [macOS](https://developer.apple.com/library/archive/samplecode/qttimecode/qttimecode.zip) | 2003-01-14 | | [qtvectors](https://developer.apple.com/library/archive/samplecode/qtvectors/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001060) | [macOS](https://developer.apple.com/library/archive/samplecode/qtvectors/qtvectors.zip) | 2003-01-14 | | [qtvectors.win](https://developer.apple.com/library/archive/samplecode/qtvectors.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001061) | [macOS](https://developer.apple.com/library/archive/samplecode/qtvectors/qtvectors.win.zip) | 2003-01-14 | | [qtwiredactions](https://developer.apple.com/library/archive/samplecode/qtwiredactions/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001074) | [macOS](https://developer.apple.com/library/archive/samplecode/qtwiredactions/qtwiredactions.zip) | 2003-02-25 | | [qtwiredactions.win](https://developer.apple.com/library/archive/samplecode/qtwiredactions.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001075) | [macOS](https://developer.apple.com/library/archive/samplecode/qtwiredactions/qtwiredactions.win.zip) | 2003-02-25 | | [qtwiredsprites](https://developer.apple.com/library/archive/samplecode/qtwiredsprites/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001076) | [macOS](https://developer.apple.com/library/archive/samplecode/qtwiredsprites/qtwiredsprites.zip) | 2003-02-25 | | [qtwiredsprites.win](https://developer.apple.com/library/archive/samplecode/qtwiredsprites.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001077) | [macOS](https://developer.apple.com/library/archive/samplecode/qtwiredsprites/qtwiredsprites.win.zip) | 2003-02-25 | | [qtwiredspritesjr](https://developer.apple.com/library/archive/samplecode/qtwiredspritesjr/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001078) | [macOS](https://developer.apple.com/library/archive/samplecode/qtwiredspritesjr/qtwiredspritesjr.zip) | 2003-02-25 | | [qtwiredspritesjr.win](https://developer.apple.com/library/archive/samplecode/qtwiredspritesjr.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001079) | [macOS](https://developer.apple.com/library/archive/samplecode/qtwiredspritesjr/qtwiredspritesjr.win.zip) | 2003-02-25 | | [quitapps](https://developer.apple.com/library/archive/samplecode/quitapps/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000316) | [macOS](https://developer.apple.com/library/archive/samplecode/quitapps/quitapps.zip) | 2003-07-22 | | [resolveRelativeAlias](https://developer.apple.com/library/archive/samplecode/resolveRelativeAlias/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000476) | [macOS](https://developer.apple.com/library/archive/samplecode/resolveRelativeAlias/resolveRelativeAlias.zip) | 2003-01-14 | | [rollercoasterold](https://developer.apple.com/library/archive/samplecode/rollercoasterold/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000135) | [macOS](https://developer.apple.com/library/archive/samplecode/rollercoasterold/rollercoasterold.zip) | 2003-01-14 | | [samplemakeeffectmovie](https://developer.apple.com/library/archive/samplecode/samplemakeeffectmovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000840) | [macOS](https://developer.apple.com/library/archive/samplecode/samplemakeeffectmovie/samplemakeeffectmovie.zip) | 2003-02-25 | | [samplemakeeffectmovie.win](https://developer.apple.com/library/archive/samplecode/samplemakeeffectmovie.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000841) | [macOS](https://developer.apple.com/library/archive/samplecode/samplemakeeffectmovie/samplemakeeffectmovie.win.zip) | 2003-02-25 | | [simpleAVC](https://developer.apple.com/library/archive/samplecode/simpleAVC/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000441) | [macOS](https://developer.apple.com/library/archive/samplecode/simpleAVC/simpleAVC.zip) | 2003-01-14 | | [simpleJavaLauncher](https://developer.apple.com/library/archive/samplecode/simpleJavaLauncher/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000688) | [macOS](https://developer.apple.com/library/archive/samplecode/simpleJavaLauncher/simpleJavaLauncher.zip) | 2006-04-12 | | [simpleeditsdi.win](https://developer.apple.com/library/archive/samplecode/simpleeditsdi.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000795) | [macOS](https://developer.apple.com/library/archive/samplecode/simpleeditsdi/simpleeditsdi.win.zip) | 2003-01-14 | | [simpleplayersdi.win](https://developer.apple.com/library/archive/samplecode/simpleplayersdi.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000796) | [macOS](https://developer.apple.com/library/archive/samplecode/simpleplayersdi/simpleplayersdi.win.zip) | 2003-01-14 | | [sndequalizer](https://developer.apple.com/library/archive/samplecode/sndequalizer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000918) | [macOS](https://developer.apple.com/library/archive/samplecode/sndequalizer/sndequalizer.zip) | 2003-01-14 | | [softvdig](https://developer.apple.com/library/archive/samplecode/softvdig/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000334) | [macOS](https://developer.apple.com/library/archive/samplecode/softvdig/softvdig.zip) | 2003-08-29 | | [softvdig.win](https://developer.apple.com/library/archive/samplecode/softvdig.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000335) | [macOS](https://developer.apple.com/library/archive/samplecode/softvdig/softvdig.win.zip) | 2003-08-29 | | [soundconverter](https://developer.apple.com/library/archive/samplecode/soundconverter/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000920) | [macOS](https://developer.apple.com/library/archive/samplecode/soundconverter/soundconverter.zip) | 2003-01-14 | | [soundconverter.win](https://developer.apple.com/library/archive/samplecode/soundconverter.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000921) | [macOS](https://developer.apple.com/library/archive/samplecode/soundconverter/soundconverter.win.zip) | 2003-01-14 | | [soundsnippets](https://developer.apple.com/library/archive/samplecode/soundsnippets/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000924) | [macOS](https://developer.apple.com/library/archive/samplecode/soundsnippets/soundsnippets.zip) | 2003-10-27 | | [soundsnippets.win](https://developer.apple.com/library/archive/samplecode/soundsnippets.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000925) | [macOS](https://developer.apple.com/library/archive/samplecode/soundsnippets/soundsnippets.win.zip) | 2003-10-27 | | [stdFilterHacking](https://developer.apple.com/library/archive/samplecode/stdFilterHacking/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000619) | [macOS](https://developer.apple.com/library/archive/samplecode/stdFilterHacking/stdFilterHacking.zip) | 2003-01-30 | | [tcplognke](https://developer.apple.com/library/archive/samplecode/tcplognke/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003669) | [macOS](https://developer.apple.com/library/archive/samplecode/tcplognke/tcplognke.zip) | 2006-11-27 | | [testNBP](https://developer.apple.com/library/archive/samplecode/testNBP/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000266) | [macOS](https://developer.apple.com/library/archive/samplecode/testNBP/testNBP.zip) | 2003-01-14 | | [tvOSMaps: Using MapKit in a tvOS application](https://developer.apple.com/library/archive/samplecode/tvOSMaps/Introduction/Intro.html#//apple_ref/doc/uid/TP40017314) | [tvOS](https://developer.apple.com/library/archive/samplecode/tvOSMapsUsingMapKitinatvOSapplication/tvOSMapsUsingMapKitinatvOSapplication.zip) | 2016-10-04 | | [txRatio PICT](https://developer.apple.com/library/archive/samplecode/txRatio_PICT/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000177) | [macOS](https://developer.apple.com/library/archive/samplecode/txRatio_PICT/txRatio_PICT.zip) | 2003-07-22 | | [usher](https://developer.apple.com/library/archive/samplecode/usher/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001057) | [macOS](https://developer.apple.com/library/archive/samplecode/usher/usher.zip) | 2003-01-14 | | [vDSP Examples](https://developer.apple.com/library/archive/samplecode/vDSPExamples/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004300) | [macOS](https://developer.apple.com/library/archive/samplecode/vDSPExamples/vDSPExamples.zip) | 2012-08-06 | | [vox recording](https://developer.apple.com/library/archive/samplecode/vox_recording/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000376) | [macOS](https://developer.apple.com/library/archive/samplecode/vox_recording/vox_recording.zip) | 2003-03-14 | | [vrbackbuffer](https://developer.apple.com/library/archive/samplecode/vrbackbuffer/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001019) | [macOS](https://developer.apple.com/library/archive/samplecode/vrbackbuffer/vrbackbuffer.zip) | 2003-01-14 | | [vrbackbuffer.win](https://developer.apple.com/library/archive/samplecode/vrbackbuffer.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001020) | [macOS](https://developer.apple.com/library/archive/samplecode/vrbackbuffer/vrbackbuffer.win.zip) | 2003-01-14 | | [vrcursors](https://developer.apple.com/library/archive/samplecode/vrcursors/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001021) | [macOS](https://developer.apple.com/library/archive/samplecode/vrcursors/vrcursors.zip) | 2003-01-14 | | [vrcursors.win](https://developer.apple.com/library/archive/samplecode/vrcursors.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001022) | [macOS](https://developer.apple.com/library/archive/samplecode/vrcursors/vrcursors.win.zip) | 2003-01-14 | | [vrflattenmovie](https://developer.apple.com/library/archive/samplecode/vrflattenmovie/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001023) | [macOS](https://developer.apple.com/library/archive/samplecode/vrflattenmovie/vrflattenmovie.zip) | 2003-01-14 | | [vrmakeobject](https://developer.apple.com/library/archive/samplecode/vrmakeobject/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001025) | [macOS](https://developer.apple.com/library/archive/samplecode/vrmakeobject/vrmakeobject.zip) | 2003-01-14 | | [vrmakeobject.win](https://developer.apple.com/library/archive/samplecode/vrmakeobject.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001026) | [macOS](https://developer.apple.com/library/archive/samplecode/vrmakeobject/vrmakeobject.win.zip) | 2003-01-14 | | [vrmakepano](https://developer.apple.com/library/archive/samplecode/vrmakepano/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001027) | [macOS](https://developer.apple.com/library/archive/samplecode/vrmakepano/vrmakepano.zip) | 2003-01-14 | | [vrmakepano.win](https://developer.apple.com/library/archive/samplecode/vrmakepano.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001029) | [macOS](https://developer.apple.com/library/archive/samplecode/vrmakepano/vrmakepano.win.zip) | 2003-01-14 | | [vrmovies](https://developer.apple.com/library/archive/samplecode/vrmovies/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001030) | [macOS](https://developer.apple.com/library/archive/samplecode/vrmovies/vrmovies.zip) | 2003-01-14 | | [vrmovies.win](https://developer.apple.com/library/archive/samplecode/vrmovies.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001031) | [macOS](https://developer.apple.com/library/archive/samplecode/vrmovies/vrmovies.win.zip) | 2003-01-14 | | [vrscript](https://developer.apple.com/library/archive/samplecode/vrscript/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001032) | [macOS](https://developer.apple.com/library/archive/samplecode/vrscript/vrscript.zip) | 2003-01-14 | | [vrscript.win](https://developer.apple.com/library/archive/samplecode/vrscript.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001033) | [macOS](https://developer.apple.com/library/archive/samplecode/vrscript/vrscript.win.zip) | 2003-01-14 | | [vrspeech](https://developer.apple.com/library/archive/samplecode/vrspeech/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001034) | [macOS](https://developer.apple.com/library/archive/samplecode/vrspeech/vrspeech.zip) | 2003-01-14 | | [watchme](https://developer.apple.com/library/archive/samplecode/watchme/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001080) | [macOS](https://developer.apple.com/library/archive/samplecode/watchme/watchme.zip) | 2003-02-25 | | [watchme.win](https://developer.apple.com/library/archive/samplecode/watchme.win/Introduction/Intro.html#//apple_ref/doc/uid/DTS10001081) | [macOS](https://developer.apple.com/library/archive/samplecode/watchme/watchme.win.zip) | 2003-02-25 |
0
authorjapps/performance-tests
Sample Performance Testing setup for HTTP REST, SOAP APIs, JUnit4, JUnit5 tests - Generating Load and Stress On a Target Application
api assertion consurrent declarative easy java jmeter json junit junit5 jupiter load parallel performance rest simple testing tests user using
Visit our [Knowledge Base](https://knowledge.zerocode.io/knowledge/load-or-performance-testing-ide-based) to learn about load/stress testing and [IDE based performance testing](https://knowledge.zerocode.io/knowledge/load-or-performance-testing-ide-based). ## Table of Contents * [Introduction and Quick Overview](https://github.com/authorjapps/zerocode/wiki/Load-or-Performance-Testing-(IDE-based)#in-essence-the-performance-testing-is-all-about-) * [Performance testing (Testing load and stress)](#performance-testing-testing-load-and-stress) * [Using - JUnit5 Jupiter](#maven-dependencies---junit5-jupiter-tests) * [Using - JUnit4](#maven-dependencies---junit4) * [One user-journey parallel load](#single-scenario-parallel-load) * [Combining single user-journeys(GET, POST, PUT etc)](#combining-single-loadsget-post-put-etc) * [Multi scenario parallel load](#multi-scenario-parallel-load) * [Grouping the multiload tests(Optional)](#optionallygrouping-the-multiload-tests) * [Load with gradually increasing or decreasing](#load-with-gradually-increasing-or-decreasing) * [Maven library used](#maven-library-used) * [Disbaling long-running HTML reports]() # Performance testing (Testing load and stress) Sample Performance Tests - Banking (Using [JUnit](https://github.com/junit-team/junit4) and [Zerocode](https://github.com/authorjapps/zerocode) test framework) #### Maven dependencies - JUnit5 Jupiter Tests ```xml <dependency> <groupId>org.jsmart</groupId> <artifactId>zerocode-tdd-jupiter</artifactId> <version>1.3.23</version> <!-- or higher --> </dependency> ``` Then follow this [WikiPage](https://github.com/authorjapps/zerocode/wiki/JUnit5-Jupiter-Parallel-Load-Extension). For **JUnit4** parallel-run or load testing, follow the samples in the below sections. #### Maven dependencies - JUnit4 ```xml <dependency> <groupId>org.jsmart</groupId> <artifactId>zerocode-tdd</artifactId> <version>1.3.23</version> </dependency> ``` ![Prepare Scenario](help_images/load_tests_L.png) Single scenario parallel load === See this `GET` load test in the repo e.g. ```java @LoadWith("load_generation.properties") @TestMapping(testClass = GetScreeningServiceTest.class, testMethod = "testGetScreeningLocalAndGlobal") @RunWith(ZeroCodeLoadRunner.class) public class LoadGetTest { } ``` Where, the `load_generation.properties` has the below load e.g. </br> (100 requests in 100secs i.e. each request in 1 sec gap, looping twice, meaning 200 parallel requests) ```properties number.of.threads=100 ramp.up.period.in.seconds=100 loop.count=2 ``` It generates load for the below GET scenario: ``` @TargetEnv("screening_service_host.properties") @RunWith(ZeroCodeUnitRunner.class) public class GetScreeningServiceTest { @Test @JsonTestCase("load_tests/get/get_screening_details_by_custid.json") public void testGetScreeningLocalAndGlobal() throws Exception { } } ``` Where the `get_screening_details_by_custid.json` with payload and assertions/validations : ``` { "scenarioName": "Screening API- Get Screening by customerId test", "steps": [ { "name": "get_screening_details", "url": "/api/v1/screening/cust-ids/SINGAHV3033", "method": "GET", "request": { }, "verify": { "status": 200, "body": { "id" : "SINGAHV3033", "localScreeningStatus" : "Green", "globalScreeningStatus" : "Red" } } } ] } ``` + [Download](https://github.com/authorjapps/performance-tests/archive/master.zip) or [browse](https://github.com/authorjapps/performance-tests) in the repo Combining single loads(GET, POST, PUT etc) === See the suite test firing different loads with single scenario each e.g. sample test-class: `org.jsmart.zerocode.samples.load.LoadTestSuite` ```java @Suite.SuiteClasses({ LoadGetTest.class, LoadPostTest.class, LoadMultipleGetPostPutTest.class }) @RunWith(Suite.class) public class LoadTestSuite { } ``` + [Download](https://github.com/authorjapps/performance-tests/archive/master.zip) or [browse](https://github.com/authorjapps/performance-tests) in the repo Multi scenario parallel load === See the test-class `org.jsmart.zerocode.samples.load.parallelmulti.LoadMultipleGetPostPutTest` ```java /** * What's new in ZeroCodeMultiLoadRunner.class ? * --------------------------------------------- * While running with "ZeroCodeMultiLoadRunner.class", each test mapping here is equivalent to one user, * that means there are 3 concurrent users below invoking their respective user operations as: * User-1) POST,GET * User-2) PUT,GET * User-3) GET * User-N) so on * * Note : * ------ * All 3 users are running in parallel which resembles the production like scenario where each user * doing different jobs. * * You can keep feeding/adding as many tests by using @TestMapping(TestClassName.class, "testMethodName") * * Please make sure you set "number.of.threads" >= "number of test mappings(= 3 here)" giving chance for * each scenario to get executed at least once. * */ @LoadWith("load_generation.properties") @TestMapping(testClass = GetScreeningServiceTest.class, testMethod = "testGetScreeningLocalAndGlobal") @TestMapping(testClass = PostCorpLoanServiceTest.class, testMethod = "testPostNewLoan_crudOperations") @TestMapping(testClass = PutCorpLoanServiceTest.class, testMethod = "testPutAmendExistingLoan") @RunWith(ZeroCodeMultiLoadRunner.class) public class LoadMultipleGetPostPutTest { } ``` + [Download](https://github.com/authorjapps/performance-tests/archive/master.zip) or [browse](https://github.com/authorjapps/performance-tests) in the repo #### (Optionally)Grouping the multiload tests You can(optionally) group the `@TestMapping`s as below for better readability and pretty looking too. ```java @LoadWith("load_generation.properties") @TestMappings({ @TestMapping(testClass = GetScreeningServiceTest.class, testMethod = "testGetScreeningLocalAndGlobal"), @TestMapping(testClass = PostCorpLoanServiceTest.class, testMethod = "testPostNewLoan_crudOperations"), @TestMapping(testClass = PutCorpLoanServiceTest.class, testMethod = "testPutAmendExistingLoan") }) @RunWith(ZeroCodeMultiLoadRunner.class) public class LoadMultipleGroupAnnotationTest { } ``` + [Download](https://github.com/authorjapps/performance-tests/archive/master.zip) or [browse](https://github.com/authorjapps/performance-tests) in the repo Load with gradually increasing or decreasing === See the test-class `org.jsmart.zerocode.samples.loadgradually.LoadGraduallyTestSuite` ```java @Suite.SuiteClasses({ LoadGet1Per5SecTest.class, // <-- Less load (5 sec gap) LoadGet1Per1SecTest.class, // <-- Bit more load (1 sec gap) LoadGet5Per1SecTest.class // <-- Heavy load (0.2 sec gap) }) @RunWith(Suite.class) public class LoadGraduallyTestSuite { } ``` + [Download](https://github.com/authorjapps/performance-tests/archive/master.zip) this project to run using your local IDE Maven library used === + Latest release (includes Kafka testing): ``` <dependency> <groupId>org.jsmart</groupId> <artifactId>zerocode-tdd</artifactId> <version>1.3.x</version> </dependency> ``` + Visit here for the latest in [Maven Central](https://mvnrepository.com/artifact/org.jsmart/zerocode-tdd) + Or check here at [zerocode maven-and-ci](https://github.com/authorjapps/zerocode/blob/master/README.md#maven-and-ci-) + Visit here for the earlier releases [Maven Central](https://mvnrepository.com/artifact/org.jsmart/zerocode-rest-bdd) Disabling long-running HTML Reports === The Interactive-Html-Report generation is enabled by default. For load testing this report may not be quite useful as we are mostly interested in load statistics which we can get from the CSV reports. Also the HTML interactive reports particularly takes bit longer to generate during load testing. To disable this report generation please use the following flag in the host properties file annotated with `@TargetEnv("app_host_sit.properties")`. ```properties interactive.html.report.disabled=true ```
1
LambdaTest/junit-selenium-sample
Run JUnit and Selenium scripts on LambdaTest automation cloud. A sample repo to help you run JUnit framework based test scripts in parallel with LambdaTest
automated-testing automation grid java junit lambdatest selenium selenium-tests selenium-webdriver test-automation testing testing-tools web-testing
# Run Selenium Tests With JUnit On LambdaTest ![image](https://user-images.githubusercontent.com/70570645/171432631-dcc31b10-6590-4877-98c0-4ac702fbd441.png) <p align="center"> <a href="https://www.lambdatest.com/blog/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample" target="_bank">Blog</a> &nbsp; &#8901; &nbsp; <a href="https://www.lambdatest.com/support/docs/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample" target="_bank">Docs</a> &nbsp; &#8901; &nbsp; <a href="https://www.lambdatest.com/learning-hub/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample" target="_bank">Learning Hub</a> &nbsp; &#8901; &nbsp; <a href="https://www.lambdatest.com/newsletter/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample" target="_bank">Newsletter</a> &nbsp; &#8901; &nbsp; <a href="https://www.lambdatest.com/certifications/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample" target="_bank">Certifications</a> &nbsp; &#8901; &nbsp; <a href="https://www.youtube.com/c/LambdaTest" target="_bank">YouTube</a> </p> &emsp; &emsp; &emsp; *Learn how to use JUnit framework to configure and run your Java automation testing scripts on the LambdaTest platform* [<img height="58" width="200" src="https://user-images.githubusercontent.com/70570645/171866795-52c11b49-0728-4229-b073-4b704209ddde.png">](https://accounts.lambdatest.com/register?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) ## Table Of Contents * [Pre-requisites](#pre-requisites) * [Run Your First Test](#run-your-first-test) * [Parallel Testing With JUnit](#run-parallel-tests-using-junit) * [Local Testing With JUnit](#testing-locally-hosted-or-privately-hosted-projects) ## Pre-requisites Before you can start performing Java automation testing with Selenium, you would need to: - Install the latest **Java development environment** i.e. **JDK 1.6** or higher. We recommend using the latest version. - Download the latest **Selenium Client** and its **WebDriver bindings** from the [official website](https://www.selenium.dev/downloads/). Latest versions of Selenium Client and WebDriver are ideal for running your automation script on LambdaTest Selenium cloud grid. - Install **Maven** which supports **JUnit** framework out of the box. **Maven** can be downloaded and installed following the steps from [the official website](https://maven.apache.org/). Maven can also be installed easily on **Linux/MacOS** using [Homebrew](https://brew.sh/) package manager. - You would have to add the following maven dependency to your `pom.xml` file if working on your local project. ```xml <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> ``` ### Cloning Repo And Installing Dependencies **Step 1:** Clone the LambdaTest’s JUnit-Selenium-Sample repository and navigate to the code directory as shown below: ```bash git clone https://github.com/LambdaTest/junit-selenium-sample cd junit-selenium-sample ``` You may also want to run the command below to check for outdated dependencies. ```bash mvn versions:display-dependency-updates ``` ### Setting Up Your Authentication Make sure you have your LambdaTest credentials with you to run test automation scripts. You can get these credentials from the [LambdaTest Automation Dashboard](https://automation.lambdatest.com/build?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) or by your [LambdaTest Profile](https://accounts.lambdatest.com/login?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample). **Step 2:** Set LambdaTest **Username** and **Access Key** in environment variables. * For **Linux/macOS**: ```bash export LT_USERNAME="YOUR_USERNAME" export LT_ACCESS_KEY="YOUR ACCESS KEY" ``` * For **Windows**: ```bash set LT_USERNAME="YOUR_USERNAME" set LT_ACCESS_KEY="YOUR ACCESS KEY" ``` ## Run Your First Test >**Test Scenario**: Checkout sample [JUnitTodo.java](https://github.com/LambdaTest/junit-selenium-sample/blob/master/src/test/java/com/lambdatest/JUnitTodo.java) file. This JUnit Selenium script tests a sample to-do list app by marking couple items as done, adding a new item to the list and finally displaying the count of pending items as output. ### Configuring your Test Capabilities **Step 3:** In the test script, you need to update your test capabilities. In this code, we are passing browser, browser version, and operating system information, along with LambdaTest Selenium grid capabilities via capabilities object. The capabilities object in the above code are defined as: ```java ChromeOptions browserOptions = new ChromeOptions(); browserOptions.setCapability("platformName", "Windows 10"); browserOptions.setCapability("browserVersion", "latest"); Map<String, Object> ltOptions = new HashMap<>(); ltOptions.put("build", "JUnitSampleTestApp"); ltOptions.put("name", "JUnitSampleTest"); ltOptions.put("selenium_version", "4.0.0"); ltOptions.put("project", ""); //Enter Project name here ltOptions.put("smartUI.project", ""); //Enter smartUI Project name here ltOptions.put("w3c", true); ltOptions.put("plugin", "junit-junit"); ltOptions.put("visual", true); // To enable step by step screenshot ltOptions.put("network", true); // To enable network logs ltOptions.put("video", true); // To enable video recording ltOptions.put("console", true); // To capture console logs browserOptions.setCapability("LT:Options", ltOptions); ``` You can generate capabilities for your test requirements with the help of our inbuilt [Desired Capability Generator](https://www.lambdatest.com/capabilities-generator/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample). ### Executing the Test **Step 4:** The tests can be executed in the terminal using the following command. ```bash mvn test -P single ``` Your test results would be displayed on the test console (or command-line interface if you are using terminal/cmd) and on [LambdaTest automation dashboard](https://automation.lambdatest.com/build). ## Run Parallel Tests Using JUnit Check out the [Parallelized.java](https://github.com/LambdaTest/junit-selenium-sample/blob/master/src/test/java/com/lambdatest/Parallelized.java) class we have used for running our Parallel Tests using JUnit. Check out the [JUnitConcurrentTodo.java](https://github.com/LambdaTest/junit-selenium-sample/blob/master/src/test/java/com/lambdatest/JUnitConcurrentTodo.java) file for executing parallel test using JUnit automation framework. ### Executing Parallel Tests Using JUnit To run parallel tests using **JUnit**, we would have to execute the below command in the terminal: ```bash mvn test -P parallel ``` ## Testing Locally Hosted Or Privately Hosted Projects You can test your locally hosted or privately hosted projects with LambdaTest Selenium grid using LambdaTest Tunnel. All you would have to do is set up an SSH tunnel using tunnel and pass toggle `tunnel = True` via desired capabilities. LambdaTest Tunnel establishes a secure SSH protocol based tunnel that allows you in testing your locally hosted or privately hosted pages, even before they are live. Refer our [LambdaTest Tunnel documentation](https://www.lambdatest.com/support/docs/testing-locally-hosted-pages/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) for more information. Here’s how you can establish LambdaTest Tunnel. Download the binary file of: * [LambdaTest Tunnel for Windows](https://downloads.lambdatest.com/tunnel/v3/windows/64bit/LT_Windows.zip) * [LambdaTest Tunnel for macOS](https://downloads.lambdatest.com/tunnel/v3/mac/64bit/LT_Mac.zip) * [LambdaTest Tunnel for Linux](https://downloads.lambdatest.com/tunnel/v3/linux/64bit/LT_Linux.zip) Open command prompt and navigate to the binary folder. Run the following command: ```bash LT -user {user’s login email} -key {user’s access key} ``` So if your user name is lambdatest@example.com and key is 123456, the command would be: ```bash LT -user lambdatest@example.com -key 123456 ``` Once you are able to connect **LambdaTest Tunnel** successfully, you would just have to pass on tunnel capabilities in the code shown below : **Tunnel Capability** ```java ChromeOptions browserOptions = new ChromeOptions(); browserOptions.setCapability("platformName", "Windows 10"); browserOptions.setCapability("browserVersion", "latest"); Map<String, Object> ltOptions = new HashMap<>(); ltOptions.put("tunnel", true); ``` ## Tutorials 📙 Check out our latest tutorials on JUnit automation testing 👇 * [JUnit 5 vs TestNG: Choosing the Right Frameworks for Selenium Automation Testing](https://www.lambdatest.com/blog/junit-5-vs-testng/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [TestNG vs JUnit: Which Testing Framework Should You Choose?](https://www.lambdatest.com/blog/testng-vs-junit-which-testing-framework-should-you-choose/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [JUnit With Selenium](https://www.lambdatest.com/blog/automated-testing-with-junit-and-selenium-for-browser-compatibility/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [JUnit Environment Setup](https://www.lambdatest.com/blog/setup-junit-environment/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [How to Run JUnit Selenium Tests Using TestNG?](https://www.lambdatest.com/blog/test-example-junit-and-testng-in-selenium/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [[Complete JUnit 5 Mockito Tutorial for Unit Testing]](https://www.lambdatest.com/blog/junit5-mockito-tutorial/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [Parallel Testing with JUnit 5 and Selenium [Tutorial]](https://www.lambdatest.com/blog/parallel-testing-with-junit5-and-selenium/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [How to Execute JUnit 4 Tests with JUnit 5 [Tutorial]](https://www.lambdatest.com/blog/execute-junit4-tests-with-junit5/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [How to Run JUnit Tests from the Command Line?](https://www.lambdatest.com/blog/run-junit-from-command-line/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [How to Minimize Browsers in Selenium WebDriver Using JUnit?](https://www.lambdatest.com/blog/minimize-browsers-in-selenium-webdriver/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [How to use @RepeatedTest Annotations in JUnit 5?](https://www.lambdatest.com/blog/repeatedtest-annotation-in-junit-5/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [A Comprehensive Guide on JUnit 5 Extensions](https://www.lambdatest.com/blog/junit5-extensions/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [How to Run JUnit Selenium Tests Using TestNG?](https://www.lambdatest.com/blog/test-example-junit-and-testng-in-selenium/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [JUnit Parameterized Test for Selenium Automation with Examples](https://www.lambdatest.com/blog/junit-parameterized-test-selenium/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [JUnit Asserts with Examples](https://www.lambdatest.com/blog/junit-assertions-example-for-selenium-testing/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [Tutorial on JUnit Annotations with Examples](https://www.lambdatest.com/blog/tutorial-on-junit-annotations-in-selenium-with-examples/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [Automated Testing with JUnit and Selenium for Browser Compatibility](https://www.lambdatest.com/blog/automated-testing-with-junit-and-selenium-for-browser-compatibility/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) For video tutorials on Selenium JUnit, please refer to our [JUnit Tutorial Playlist](https://www.youtube.com/playlist?list=PLZMWkkQEwOPn68qzCGJl07ZbnI7Ix5zKU). ▶️ Subscribe To Our [LambdaTest YouTube Channel 🔔](https://www.youtube.com/c/LambdaTest) and keep up-to-date on the latest video tutorial around software testing world. ## Documentation & Resources :books: Visit the following links to learn more about LambdaTest's features, setup and tutorials around test automation, mobile app testing, responsive testing, and manual testing. * [LambdaTest Documentation](https://www.lambdatest.com/support/docs/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [LambdaTest Blog](https://www.lambdatest.com/blog/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) * [LambdaTest Learning Hub](https://www.lambdatest.com/learning-hub/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) ## LambdaTest Community :busts_in_silhouette: The [LambdaTest Community](https://community.lambdatest.com/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) allows people to interact with tech enthusiasts. Connect, ask questions, and learn from tech-savvy people. Discuss best practises in web development, testing, and DevOps with professionals from across the globe 🌎 ## What's New At LambdaTest ❓ To stay updated with the latest features and product add-ons, visit [Changelog](https://changelog.lambdatest.com) ## About LambdaTest [LambdaTest](https://www.lambdatest.com/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample) is a leading test execution and orchestration platform that is fast, reliable, scalable, and secure. It allows users to run both manual and automated testing of web and mobile apps across 3000+ different browsers, operating systems, and real device combinations. Using LambdaTest, businesses can ensure quicker developer feedback and hence achieve faster go to market. Over 500 enterprises and 1 Million + users across 130+ countries rely on LambdaTest for their testing needs. ### Features * Run Selenium, Cypress, Puppeteer, Playwright, and Appium automation tests across 3000+ real desktop and mobile environments. * Real-time cross browser testing on 3000+ environments. * Test on Real device cloud * Blazing fast test automation with HyperExecute * Accelerate testing, shorten job times and get faster feedback on code changes with Test At Scale. * Smart Visual Regression Testing on cloud * 120+ third-party integrations with your favorite tool for CI/CD, Project Management, Codeless Automation, and more. * Automated Screenshot testing across multiple browsers in a single click. * Local testing of web and mobile apps. * Online Accessibility Testing across 3000+ desktop and mobile browsers, browser versions, and operating systems. * Geolocation testing of web and mobile apps across 53+ countries. * LT Browser - for responsive testing across 50+ pre-installed mobile, tablets, desktop, and laptop viewports [<img height="58" width="200" src="https://user-images.githubusercontent.com/70570645/171866795-52c11b49-0728-4229-b073-4b704209ddde.png">](https://accounts.lambdatest.com/register) ## We are here to help you :headphones: * Got a query? we are available 24x7 to help. [Contact Us](mailto:support@lambdatest.com) * For more info, visit - [LambdaTest](https://www.lambdatest.com/?utm_source=github&utm_medium=repo&utm_campaign=junit-selenium-sample)
1
Ikhiloya/spring-jpa-oracle-demo
A sample demo app that shows how to create a RESTful webservice using Spring Boot, Spring Data JPA and Oracle database
mysql oracle-database sample-demo spring-boot spring-data-jpa
# spring-jpa-oracle-demo A sample demo app that shows how to create a RESTful webservice using Spring Boot, Spring Data JPA and Oracle database ## Build #### mvn clean package ## Run App with either oracle or mysql profile #### mvn spring-boot:run -Dspring.profiles.active=oracle #### mvn spring-boot:run -Dspring.profiles.active=mysql #### Possible contributing ideas: 1. spring boot with mysql or any other database 2. spring boot with kotlin 3. spring security 4. JUnit Test 5. Integration Test 6. Your own idea would be great...just do it! ## Contributing Contributions are welcomed 1. Fork it! 2. Create your feature branch: `git checkout -b my-new-feature` 3. Commit your changes: `git commit -m 'Add some feature'` 4. Push to the branch: `git push origin my-new-feature` 5. Submit a pull request _ _ _ ## Medium Articles - [Developing RESTful web service using Spring Boot, Spring Data JPA and Oracle Database](https://medium.com/skillhive/spring-boot-spring-data-jpa-and-oracle-database-c4af89f727e0) - [Internationalization in Spring Boot](https://medium.com/skillhive/internalization-in-spring-boot-22f4fa82f132)
1
cory-johannsen/gradle-jni-example
A sample application that shows how to use gradle to compile C/C++ JNI code
null
# gradle-jni-example A sample application that shows how to use gradle to compile C/C++ JNI code This project require gradle 2.3 to match the native compilation DSL. Native compilation currently support two toolchains: gcc and clang. The gradle native plugin scans the path and chooses the "best" tool available, although how that determination is made is currently opaque. Gradle clearly prefers clang to gcc, and will always use that toolchain if it is available. The Java subset of the code base is a Spring-boot application.
1
irobertson/jpa-annotation-processor
Sample code for JavaOne 2012 talk CON7928 - Writing Annotation Processors to Aid Your Development Process
null
This is code for the JavaOne 2012 talk [CON7928 - Writing Annotation Processors to Aid Your Development Process](https://oracleus.activeevents.com/connect/sessionDetail.ww?SESSION_ID=7928).
1
qiyuesuo/sdk-java-sample
Sample code showing how to use Qiyuesuo Java SDK. 契约锁Java SDK示例代码。
null
# 契约锁Java SDK示例 [契约锁](http://www.qiyuesuo.com) 成立于2015年,是新一代数字签名服务领域的领军企业。依托雄厚的企业管理软件服务经验,致力为全国的企业及个人用户提供最具可用性、稳定性及前瞻性的电子签署、数据存证及数据交互服务。 契约锁深耕企业级市场,产品线涵盖电子签署、合同管理、公文签发、数据存证等企业内签署场景,并提供API调用方便接入企业内部管理系统。目前主要为教育、旅游、互联网金融、政府事业单位、集团企业、B2B电商、地产中介、O2O等企业及个人提供签署、存证服务。 契约锁严格遵守《中华人民共和国电子签名法》,并联合公安部公民网络身份识别系统(eID)、工商相关身份识别系统、权威CA机构、公证处及律师事务所,确保在契约锁上签署的每一份合同真实且具有法律效力。 契约锁平台由上海亘岩网络科技有限公司运营开发,核心团队具有丰富的企业管理软件、金融支付行业、数字证书行业从业经验,致力于通过技术手段让企业合同签署及管理业务更简单、更便捷。 了解更多契约锁详情请访问 [www.qiyuesuo.com](http://www.qiyuesuo.com). Requirements ============ Java 1.7 or later. Installation ============ 前往 [契约锁开放平台](http://open.qiyuesuo.com/download)下载Java SDK及依赖包,并添加到项目中。 ### Maven users 将下载的Java SDK上传至Maven私有仓库,或本地仓库,并在项目POM文件中添加: ```xml <dependency> <groupId>com.qiyuesuo.sdk</groupId> <artifactId>sdk-java</artifactId> <version>3.0.0</version> </dependency> ``` 将SDK中jar包放在如下目录中: [本地maven仓库目录]/com/qiyuesuo/sdk/sdk-java/3.0.0/sdk-java-3.0.0.jar 。 Usage ===== #### 签署示例 发起方通过接口发起合同签署合同,接收方登录契约锁云平台进行签署、或在生成的签署页面签署。 详情请参考: [SendByCodeSetting.java] (https://github.com/qiyuesuo/sdk-java-sample/tree/master/src/main/java/com/qiyuesuo/sdk/sample/SendByCodeSetting.java). [SendByCategory.java] (https://github.com/qiyuesuo/sdk-java-sample/tree/master/src/main/java/com/qiyuesuo/sdk/sample/SendByCategory.java). Notes ======= 示例代码中的参数均为测试环境参数,实际运行时需要将相关参数修改为生产环境参数,或沙箱测试环境参数。 扫码关注契约锁公众号,了解契约锁最新动态。 ![契约锁公众号](qrcode.png)
1
yupaits/docs-manage
文档管理系统,实现了SpringBoot生态主流的三种认证授权方案:1、基于OAuth2的认证授权和单点登录;2、基于Shiro和jwt实现认证授权;3、基于Spring Security和jwt实现认证授权。此项目不准备继续开发,建议关注 https://github.com/yupaits/yutool-samples/tree/master/auth-sample 获取相关更新内容。
null
# DocsManage 之 实现基于OAuth2的认证授权和单点登录 ## 分支 - [shiro-jwt](https://github.com/YupaiTS/docs-manage/tree/shiro-jwt): DocsManage 之 Shiro-jwt 实现认证授权 - [spring-security-jwt](https://github.com/YupaiTS/docs-manage/tree/spring-security-jwt): DocsManage 之 spring-security-jwt 实现认证授权 ## 启动步骤 1. 下载代码 ```bash git clone https://github.com/YupaiTS/docs-manage.git ``` 1. 切换到 `master` 分支 1. 创建数据库 ```sql create database `docs-oauth2` default charset utf8 collate utf8_general_ci; ``` 1. 执行 `auth-server` 和 `docs-server` 的 `test` 包下的测试用例,向数据库插入测试数据 1. 依次运行 `discovery-server`、`auth-server`、`docs-server`、`docs-client` 中 `Application` 类的 `main` 方法启动服务 1. 在浏览器中 `http://localhost:11030/ui` 进入客户端页面
0
vpavic/spring-boot-multi-package-demo
Sample project to demonstrate packaging Spring Boot application into multiple deployment artifacts in a single build
null
null
1
macaca-sample/macaca-java-biz-sample
基于MacacaJava版的UI自动化示例 (a sample for macaca business development based on wd.java(macacaClient))
java macaca
# Bootstrap --- 基于Macaca-Java版的UI自动化实现demo ### 文档参考(从入门到精通) [https://testerhome.com/junhe](https://testerhome.com/junhe) ### 安装Macaca环境 参考链接:(Macaca-Java版入门指南)[https://testerhome.com/topics/6431) ### 使用步骤 ### 1. 下载源码 ```bash $ git clone https://github.com/macaca-sample/macaca-java-biz-sample.git ``` ### 2. 更新依赖 ```bash $ cd macaca-java-biz-sample $ make install ``` 如果下载依赖过程中报错,可能是由于mvn -s命令没有生效导致的,建议将根目录下settings.xml中的依赖配置到本地Maven目录下的settings.xml中。 ### 如何修改目标平台 ios/android? ```java //package com.javademo.common; // Config.java // 目标平台- ios android public static final String PLATFORM = "ios"; ``` 注意:执行iOS用例时需要将XCode升级到最新的8.1,执行用例前请先启动目标模拟器。 ### 3. 启动server ```bash $ macaca server --verbose ``` 注意启动server时不能加代理,因为server在本机启动需要连接localhost,加代理会导致无法建立连接。 ### 4. 执行测试用例 新建cmd窗口(记得新建cmd窗口哦,不要跟macaca server在同一个窗口执行) ,执行mvn test(默认为启动iOS用例) ```bash $ mvn -s settings.xml test ``` 或者选中SampleTest.java,右键执行run as -> JunitTest ### ReleaseNotes #### v0.0.2 将原公共库代码common部分提出来单独建立了代码库,以jar包的形式上传至Jcenter,可通过Maven直接引用。 公共库代码也已开源: [//github.com/macaca-sample/macaca-java-biz-framework](//github.com/macaca-sample/macaca-java-biz-framework) 欢迎大家引用biz.jar,使用过程中遇到问题,可以提issue,我会尽快解决。 <!-- GITCONTRIBUTOR_START --> ## Contributors |[<img src="https://avatars2.githubusercontent.com/u/5734727?v=4" width="100px;"/><br/><sub><b>Yinxl</b></sub>](https://github.com/Yinxl)<br/>|[<img src="https://avatars1.githubusercontent.com/u/1011681?v=4" width="100px;"/><br/><sub><b>xudafeng</b></sub>](https://github.com/xudafeng)<br/> | :---: | :---: | This project follows the git-contributor [spec](https://github.com/xudafeng/git-contributor), auto upated at `Sat Apr 28 2018 19:15:25 GMT+0800`. <!-- GITCONTRIBUTOR_END -->
1
maeddes/options-galore-container-build
Sample code and instructions for steps through different container image build options.
buildpacks docker dockerfile jib mav paketo-buildpack
null
1
pictet-technologies-open-source/reactive-todo-list-r2dbc
Sample reactive application using Angular, Spring Boot, Spring Webflux, Spring Data R2DBC and PostgreSQL. It also demonstrates the notification feature of PostgreSQL (listen/notify)
angular collaborative optimistic-locking postgresql postgresql-listen postgresql-notify r2dbc r2dbc-postgresql reactive-programming server-sent-event spring-boot spring-data spring-data-r2dbc webflux
[![CircleCI](https://circleci.com/gh/pictet-technologies-open-source/reactive-todo-list-r2dbc/tree/main.svg?style=shield&circle-token=fe1f6278e0274f19145214acdd9aa58853244494)](https://circleci.com/gh/pictet-technologies-open-source/reactive-todo-list-r2dbc) [![CodeFactor](https://www.codefactor.io/repository/github/pictet-technologies-open-source/reactive-todo-list-r2dbc/badge/main?s=d8d979567cd99f075cc427c98b7c2136c77160cc)](https://www.codefactor.io/repository/github/pictet-technologies-open-source/reactive-todo-list-r2dbc/overview/main) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Made with Love by Pictet Technologies](https://img.shields.io/badge/Made%20with%20love%20by-Pictet%20Technologies-ff3434.svg)](https://pictet-technologies.com/) [![LinkedIn](https://img.shields.io/badge/LinkedIn-0077B5?style=badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/alexandre-jacquot-34bb7b5) [![Medium](https://img.shields.io/badge/Medium-12100E?style=badge&logo=medium&logoColor=white)](https://medium.com/@alexandre.jacquot/reactive-programming-with-spring-data-r2dbc-ee9f1c24848b) # Reactive Todo List with PostgreSQL and Spring Data R2DBC This project aims to explain how to build a fully reactive application with **Spring Boot**, **Spring Webflux**, **Angular**, **PostgreSQL** and **Spring Data R2DBC**. It demonstrates how to deal with concurrent modifications using **optimistic locking**, **PostgreSQL Listen/Notify** and **Server Sent Events**. ### Project structure Folder | Description --------------------------|-------------------------------------------------------------- docker | Contains the docker-compose.yml used to setup the application todo-list-application | Spring boot application (back-end) todo-list-ui | Angular application (front-end) ### Local environment #### Build the application In order to build the application you need to have the following softwares installed: - open JDK or oracle JDK >= 8 - docker & docker compose - npm ``` $ build.sh ``` #### Start the application ``` $ start.sh ``` Once the application is started you can access it using the following links : Name | Link --------------------------|-------------------------------------------------------------- UI | http://localhost:8080 Swagger UI | http://localhost:8080/swagger-ui/#/item-controller PgAdmin | http://localhost:5050/ If you only want to start postgres, execute the following command ``` $ start.sh -postgres-only ``` #### Configure PgAdmin (PostgreSQL web Client) Login to PgAdmin: http://localhost:5050/ - Login: admin@admin.com - Password: password Create a connection - Server: postgres - Database name: todolist - User: admin - Password: password #### Stop the application ``` $ stop.sh ``` ### Production environment #### Build the application You need to have docker installed to build the application. Ensure that the URL of the application has been correctly configured in the following file. ``` todo-list-ui/src/app/environments/environment.prod.ts ``` Then build the application in production mode. ``` $ mvnw clean install -Pprod ```
1
rameshvoltella/RWeekCalendar
This is a sample application which displays Calendar as week view. Each week of the month is displayed. Inspired by wecal app .
null
RWeekCalendar-Android ================= ### Build status **develop** [![master](https://api.travis-ci.org/rameshvoltella/RWeekCalendar.svg?branch=master)](https://travis-ci.org/rameshvoltella/RWeekCalendar) This is a sample application which displays Calendar as week view. Each week of the month is displayed. Inspired by ([WeCal App](https://play.google.com/store/apps/details?id=im.ecloud.ecalendar)) ##Download: [![Old Here:](https://raw.githubusercontent.com/rameshvoltella/RWeekCalendar/master/Screens/playstore.png)](https://play.google.com/store/apps/details?id=com.ramzcalender.sample) * new Apk file [![New Apk Here:](https://raw.githubusercontent.com/rameshvoltella/RWeekCalendar/master/Screens/playstore.png)](https://raw.githubusercontent.com/rameshvoltella/RWeekCalendar/master/Screens/apk/v4.apk) ##Video [![Video](https://img.youtube.com/vi/gNlkxo7MfNs/0.jpg)](https://www.youtube.com/watch?v=gNlkxo7MfNs) # Gradle -------- [![](https://jitpack.io/v/rameshvoltella/RWeekCalendar.svg)](https://jitpack.io/#rameshvoltella/RWeekCalendar) /build.gradle ```groovy allprojects { repositories { jcenter() maven { url "https://jitpack.io" } } } ``` Then add the dependency to your module's build.gradle: /app/build.gradle ```groovy compile 'com.github.rameshvoltella:RWeekCalendar:0.1.0' ``` ![sample_screen1](https://raw.githubusercontent.com/rameshvoltella/RWeekCalendar/master/Screens/s1.png) ![sample_screen1](https://raw.githubusercontent.com/rameshvoltella/RWeekCalendar/master/Screens/s2.png) RWeekCalendar: how to use ------------------------ 1. Set Container view in xml ```xml <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:id="@+id/container"></LinearLayout> ``` 2. Intialize RWeekCalendar ```java RWeekCalendar rCalendarFragment=new RWeekCalendar(); ``` 3. Set the start date and end date ```java rCalendarFragment.startDate(1989, 9, 1);//Start date rCalendarFragment.endDate(2018, 12, 31);//Ending date ``` 4. Setting RWeekCalendar in your view ```java FragmentTransaction t = getSupportFragmentManager().beginTransaction(); t.replace(R.id.container, rCalendarFragment); t.commit(); ``` 5. Adding Custumizable Attributes(Add this Before Setting RWeekCalendar) ```java Bundle args = new Bundle(); /*Should add this attribute if you adding the NOW_BACKGROUND or DATE_SELECTOR_BACKGROUND Attribute*/ args.putString(RWeekCalendar.PACKAGENAME,getApplicationContext().getPackageName()); /* IMPORTANT: Customization for the Calendar commenting or un commenting any of the attribute below will reflect change in Calendar*/ //---------------------------------------------------------------------------------------------------------------------// args.putInt(RWeekCalendar.Calendar_BACKGROUND, ContextCompat.getColor(this,R.color.md_pink_700));//set background color to Calendar args.putString(RWeekCalendar.DATE_SELECTOR_BACKGROUND,"bg_select");//set background to the selected dates args.putString(RWeekCalendar.NOW_BACKGROUND,"bg_now");//set background to nowView args.putInt(RWeekCalendar.CURRENT_DATE_BACKGROUND,ContextCompat.getColor(this,R.color.md_black_1000));//set color to the currentdate args.putInt(RWeekCalendar.PRIMARY_BACKGROUND, ContextCompat.getColor(this,R.color.md_white_1000));//Set color to the primary views (Month name and dates) args.putInt(RWeekCalendar.SECONDARY_BACKGROUND, ContextCompat.getColor(this,R.color.md_green_500));//Set color to the secondary views (now view and week names) //---------------------------------------------------------------------------------------------------------------------// rCalendarFragment.setArguments(args); ``` 6. Setting listener of the Calendar ```java CalendarListener listener=new CalendarListener() { @Override public void onSelectPicker() { //Allow user to show picker you can use custum picker or any othe picker library } @Override public void onSelectDate(LocalDateTime mSelectedDate) { //callback when a date is selcted } }; //setting the listener rCalendarFragment.setCalendarListener(listener); ``` 7. After Date selected from Picker ```java //IMPORTANT: get the year,month and date from picker you using and call setDateWeek method Calendar calendar = Calendar.getInstance(); calendar.set(year, monthOfYear, dayOfMonth); rCalendarFragment.setDateWeek(calendar);//Should call setDateWeek after getting date ``` ## License The MIT License (MIT) Copyright (c) 2015 Ramesh M Nair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1
ellucianEthos/java-examples
Set of sample code for invoking Ethos APIs and publishing/consuming change-notifications.
null
# java-examples This is a set of sample code for performing the following actions against the Ethos Integration services: - getting an access token - invoking the proxy API - consuming change-notifications - publishing change-notifications This folder can be imported into eclipse as a java project.
1
luboganev/Carbrands
A sample simple list/detail application following a clean architecture approach implemented with Dagger dependency injection
null
null
1
tomoima525/CleanArchitectureSample
Sample app for Clean Architecture
null
null
1
fedepaol/RobolectricDependenyInjection
Sample project to demonstrate how to inject mock objects with robolectric
null
# RobolectricDependenyInjection Sample project to demonstrate how to inject mock objects with robolectric One really cool thing about robolectric 3.0 is the fact that you can override the Application object declared in your manifest with a custom one (which can inherit from your application's one). If you are using dagger (or dagger 2) and you are using the application as the source of dependency injection for your classes, this allow to easily replace your injected objects with mocks. You can even choose which mocks inject in the setup phase of your tests. More details can be found in [this blogpost](http://fedepaol.github.io/blog/2015/09/05/mocking-with-robolectric-and-dagger-2/)
1
razorRun/react-native-vlc-media-player-test
Sample React native project created from https://github.com/razorRun/react-native-vlc-media-player. Playing a RTSP file
media-player react-native rtmp rtsp video-player vlc vlc-player
Sample React Native project created using. Exmple of a RTSP video link [react-native-vlc-media-player](https://github.com/razorRun/react-native-vlc-media-player) ## Steps to run 1. Clone the repo 2. npm i ## IOS 3. cd ios 4. pod install 5. cd .. 6. react-native run-ios ## Android 7. react-native run-android
1
ddossot/mule-in-action-2e
Source code snippets and sample applications for the Second Edition of the book Mule in Action, authored by David Dossot, John D'Emic and Victor Romero, and published by Manning Publications.
null
Examples for Mule in Action, Second Edition ------------------------------------------- Source code snippets and sample applications for the Second Edition of the book Mule in Action, authored by David Dossot, John D'Emic and Victor Romero, and published by Manning Publications. Book home page: http://www.manning.com/dossot2/ Requirements: - Oracle JDK 1.6 with unlimited JCE cryptography, - Maven 3. Tests in the examples will open ports while they run, like 8080, 5555 and 52525, so watch out for potential conflicts. Some examples are not meant to be run, as they try to bind to fictitious host names. These examples are not included in the POM hierarchy. First, ensure that Maven's setting.xml file contains this plugin group: <pluginGroup>org.mule.tools</pluginGroup> To build and run tests run: MAVEN_OPTS="-Xms128m -Xmx512m -XX:MaxPermSize=256m" mvn clean install in the directory where is README file is located. To open projects in Eclipse, run: mvn eclipse:eclipse in the directory where is README file is located, then import the generated projects in Eclipse. To open projects in Mule Studio, import them as "Maven-based Mule Projects from pom.xml". #### Copyright 2012-2013 Manning Publications Co. - Licensed under the MIT License.
1
codedesign-webapp/pwa-example
☕️ This is the complete sample code for the book 'Do it! Making Progressive Web Apps'. 🍪 'Do it! 프로그레시브 웹앱 만들기' 책의 실습 완성 소스코드입니다.
cordova cordova-plugin es6 es6-javascript firebase firebase-auth firebase-realtime-database firebase-storage progressive-web-app pwa-apps pwa-boilerplate pwa-example vue vue-router vuejs vuetify vuetifyjs vuex workbox
[![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fcodedesign-webapp%2Fpwa-example)](https://hits.seeyoufarm.com) <br><br> <p align="center"><img src="https://github.com/codedesign-webapp/pwa-about/blob/master/images/pwa-logo.png"></p> <br><br> # "Do it! 프로그레시브 웹앱 만들기" 책 실습 소스코드 <br><br> <p align="center"> <img src="https://github.com/codedesign-webapp/pwa-about/blob/master/images/pwa-img-3d.png" width="270"> </p> <br> ## 1. 예제 파일 소개 이 곳은 **'Do it! 프로그레시브 웹앱 만들기'** (이지스퍼블리싱, 김응석 저) 책 **실습예제 완성 소스코드 원격저장소(Repository)** 입니다. - 버전에 상관 없이 실행할 수 있는 `완성된 소스파일`과 책 내용에 따라 직접 따라해 볼 수 있는 `프로젝트 템플릿(boilerplate)`이 준비되어 있습니다. <br> 책에 대한 자세한 소개는 아래 링크를 참고하세요. - **'Do it! 프로그레시브 웹앱 만들기'** 책이란? > https://github.com/codedesign-webapp/pwa-about <br> ## 2. 예제로 실습할 수 있는 14가지 핵심 주제 이 책에 실린 다양한 실습을 따라 하다 보면 다음과 같은 14가지 핵심 주제를 자연스럽게 터득할 수 있습니다. 이러한 기술은 모던 웹과 모바일 앱을 개발할 때 필수이므로 프런트엔드 개발자로 성장하는 데 폭넓은 경험을 제공합니다. ``` 1. ES6+ 필수 기능 2. 뷰, 뷰티파이 기초 & 고급 3. 구글 머티리얼 디자인 스펙 2 4. 반응형 웹 프로그래밍 5. 파이어베이스 실시간 DB 6. 워크박스 런타임 캐시 7. 모바일 하드웨어 제어 8. 이메일-구글 인증 9. 푸시 알림 10. 오프라인 동기화 11. 아파치 코르도바로 하이브리드 앱 만들기 12. PWA → 네이티브 앱 변환 13. 구글 플레이 스토어에 배포 14. 서버리스 프로그래밍 ``` <br> ## 3. 사용 도구 - 소스코드 편집기 : `비주얼스튜디오 코드` <br> ## 4. 사용방법 <br> ### 다운로드 방법 <br> - 깃허브 사용이 처음이신 분들은 `[Code] - [Download ZIP]` 버튼을 선택하면 압축된 ZIP 파일을 다운로드 받을 수 있습니다. <p align="center"><img src="https://github.com/codedesign-webapp/pwa-about/blob/master/images/download-zip.png" width="600"></p> <br> - 깃허브 계정을 가지고 계시면 우측 상단의 `[Fork]` 버튼을 누르면 자신의 계정으로 복제됩니다. <p align="center"><img src="https://github.com/codedesign-webapp/pwa-about/blob/master/images/fork.png" width="600"></p> <br> - 깃허브 사용에 익숙하신 분들은 `git clone` 명령으로 다운로드 받아 사용하시면 됩니다. ``` git clone https://github.com/codedesign-webapp/pwa-example ``` <br> ### 폴더 이름 - 폴더 이름이 `ex01-01`은 `1장의 첫번째 예제`라는 의미입니다. 완성된 소스코드가 들어 있습니다. - 폴더 이름이 `ex05-07_start`는 `시작할 때 활용하는 프로젝트 템플릿`을 의미합니다. start 폴더를 열어 책 설명에 맞춰서 소스코드를 입력하며 학습하시면 됩니다. <br> ## 5. 질의 응답과 최신 소식 제공 책을 읽다가 궁금한 점은 이지스퍼블리싱 홈페이지나 저자가 직접 운영하는 <strong>'CODE*DESIGN 웹앱'</strong> 커뮤니티 카페에 질문해 보세요. 또한 카페에서는 프로그레시브 웹앱 관련 최신 소식도 만날 수 있습니다. - `이지스퍼블리싱 홈페이지` : www.easyspub.co.kr - `CODE*DESIGN 웹앱` : https://code-design.web.app <br> 감사합니다. <br><br> > <strong>CODE*DESIGN 웹앱 : https://CODE-DESIGN.web.app</strong> > > 'CODE*DESIGN 웹앱'은 PWA 프로그레시브 웹앱의 개발과 UIUX 디자인 방법의 스터디를 위한 커뮤니티 카페입니다. <br><br><br> *** <br><br> <p align="center"><img src="https://github.com/codedesign-webapp/pwa-about/blob/master/images/pwa-logo.png"></p> <br><br> # "Do it! Making Progressive Web Apps" Book Practice Source Code <br><br> <p align="center"> <img src="https://github.com/codedesign-webapp/pwa-about/blob/master/images/pwa-img-3d.png" width="270"> </p> <br> ## 1. Introduction to sample files This is a **source code repository** for practicing examples of the book which is **'Do it! Making Progressive Web Apps'** (Easys Publishing, Eungsuk Kim). - `A complete source file` that can be executed regardless of version and `a project template(boilerplate)` that can be followed directly according to the contents of the book are prepared. <br> For a detailed introduction to the book, please refer to the link below. - What is the book **'Do it! Making Progressive Web Apps'**? > https://github.com/codedesign-webapp/pwa-about <br> ## 2. 14 key topics to practice with examples By following the various examples in this book, you can naturally master the 14 key topics: These skills are essential when developing modern web and mobile apps, giving you a broad experience in growing as a front-end developer. ``` 1. ES6+ essential features 2. Basic & Advanced for Vue.js, Vuetify.js 3. Google Material Design Specification 2 4. Responsive Web Programming 5. Firebase real-time DB 6. Workbox runtime cache 7. Mobile hardware control 8. Email-Google authentication 9. Push Notification 10. Offline synchronization 11. Making hybrid apps with Apache Cordova 12. PWA → Native App Conversion 13. Publishing on Google Play Store 14. Serverless Programming ``` <br> ## 3. Tools - Source Code Editor: `Visual Studio Code` <br> ## 4. How to use <br> ### How to download <br> - If you are new to GitHub, click the `[Code]-[Download ZIP]` button to download the compressed ZIP file. <p align="center"><img src="https://github.com/codedesign-webapp/pwa-about/blob/master/images/download-zip.png" width="600"></p> <br> - If you have a GitHub account, click the `[Fork]` button in the upper right corner to duplicate your account. <p align="center"><img src="https://github.com/codedesign-webapp/pwa-about/blob/master/images/fork.png" width="600"></p> <br> - If you are familiar with GitHub, you can download it with the `git clone` command. ``` git clone https://github.com/codedesign-webapp/pwa-example ``` <br> ### Folder name - The folder name `ex01-01` means that it is `the first example in Chapter 1`. It contains the completed source code. - The folder name `ex05-07_start` means the `project template(boilerplate) used when starting`. You can learn by opening the start folder and entering the source code according to the description of the book. <br> ## 5. Q&A and the latest news If you have any questions while reading a book, ask the <strong> Easys Publishing homepage </strong> or <strong> 'CODE*DESIGN web app'</strong> community cafe operated by the author. Especially in cafe, you can also find the latest news related to Progressive Web Apps. - `Easys Publishing homepage` : www.easyspub.co.kr - `CODE*DESIGN web app` : https://code-design.web.app <br> Thank you. <br><br> > <strong>CODE*DESIGN web app: https://CODE-DESIGN.web.app</strong> > > 'CODE*DESIGN Web App' is a internet community cafe for PWA Progressive Web App development and UI/UX design method studies. <br><br><br>
1
piomin/sample-micronaut-microservices
sample micronaut application illustrates using basic microservices patterns like distributed configuration and service discovery with Consul, distributed tracing with Zipkin, inter-service communication with micronaut http client
consul micronaut microservices zipkin
null
1
MuhamedFathy/YTS
YTS site sample app written in Java & Kotlin, implemented with MVP pattern and powered by Rx.
kotlin kotlin-android mvp rxandroid rxjava2
# YTS.AG An open source project for [YTS.AG](http://www.yts.ag) site. ## Why i did this? To help fresh developers to learn latest technologies and tools that we use in our daily work. ## **PLEASE READ** This project is just a sample for learning, **DO NOT PUBLISH** it at PlayStore or any other. ## Preview ![prev](https://raw.githubusercontent.com/MuhamedFathy/YTS/master/art/poster.png) ## Built With * Java * Kotlin * MVP ([Model View Presenter](https://en.wikipedia.org/wiki/Model-view-presenter)) ## Requirements * AndroidStudio version 3+ * Gradle version 3.0.+ * JDK 1.8 * API 21 and above ## Libraries * [RxJava](https://github.com/ReactiveX/RxJava) * [RxAndroid](https://github.com/ReactiveX/RxAndroid) * [RxBinding](https://github.com/JakeWharton/RxBinding) * [RxPermissions](https://github.com/tbruyelle/RxPermissions) * [ButterKnife](https://github.com/JakeWharton/butterknife/) * [Retrofit](https://github.com/square/retrofit) * [gson](https://github.com/google/gson) * [okhttp](https://github.com/square/okhttp) * [okio](https://github.com/square/okio) * [Timber](https://github.com/JakeWharton/timber) * [Glide](https://github.com/bumptech/glide) * [GlidePalette](https://github.com/florent37/GlidePalette) * [MaterialDialogs](https://github.com/afollestad/material-dialogs) * [Calligraphy](https://github.com/chrisjenx/Calligraphy) ## Code style I used [Square Java code style](https://github.com/square/java-code-styles). ## References * [Android-Architecture](https://github.com/googlesamples/android-architecture) * [AndroidMVP](https://github.com/antoniolg/androidmvp) ## License This project is licensed under the MIT License - see the [LICENSE](https://github.com/MuhamedFathy/YTS/blob/master/LICENSE) file for details.
1
ramazansakin/airport-reservation-system
Sample Spring Boot project for PayCore Java Web Development Bootcamp by Patika.dev
null
# Airport Reservation Project Sample project for PayCore Java Web Development BootCamp by Patika.dev .
1
HCL-TECH-SOFTWARE/AltoroJ
WARNING: This app contains security vulnerabilities. AltoroJ is a sample banking J2EE web application. It shows what happens when web applications are written with consideration of app functionality but not app security. It's a simple and uncluttered platform for demonstrating and learning more about real-life application security issues.
appscan
# Description WARNING: This application contains security vulnerabilities. Run it only in a backed-up and sheltered environment (such as a VM with a recent snapshot and host-only networking) and at your own risk, escpecially if you enable some of the advanced options described below! AltoroJ is a sample banking J2EE web application. It shows what happens when web applications are written with consideration of app functionality but not app security. It's a simple and uncluttered platform for demonstrating and learning more about real-life application security issues. AltoroJ uses standard Java & JSP functionality without relying on any additional frameworks. While vast majority of real-life applications do use frameworks, the exact same principles of Application Security apply in both cases. Frameworks can also be hard to understand for someone not familiar with a particular framework and introduce complexities that detract from the overall learning experience. Not to mention, a large number of large and complex "legacy" Java web applications that look very similar to AltoroJ (but are infinitely more complex of course). AltoroJ uses Apache Derby as its SQL database that is automatically initialized the first time you log into AltoroJ via its web interface. All of the transactions and operations will then be stored in this database from that point on until you delete your repository folder called "altoro" that is located in your OS home folder (e.g. C:\Users\[your_username] or /Users/[your_username]) or enable advanced option to re-initialize your database every time your web application server is restarted (see below). AltoroJ was created in 2008 and has gone through a number of iterations since then. It currently, being used around the world to demonstrate application security vulnerabilities, educate folks on how easy some of these issues are to exploit and how severe the impact may be, and is even a part of academic curricula. Even though AltoroJ is pretty stable, if you do find a bug or create a cool exploit for one of its vulnerabilities - please let us know!!! # Binaries and hosted versions If you'd like to try AltoroJ but want to skip all of the cool software development stuff, use publicly hosted version, available at http://altoromutual.com:8080/ . You will not be able to enable any of the advanced options and this site may not always be available, but it's the easiest way to get started # Prereqiusites AltoroJ has been developed using Eclipse and designed to run on Tomcat 7, but since it's a relatively simple J2EE app, it should be pretty easy to port it to a different J2EE IDE or another J2EE web application server. Here are out-of-the-box requirements: - Eclipse 4.6 or newer recommended (requires Java 8) - Tomcat 7.x - Gradle 3.0 to build from command line - Gradle's Buildship Eclipse plug-in to automatically download required 3rd party libraries and run AltoroJ inside Eclipse -- Easiest way to install Buildship is from Eclipse Marketplace (inside Eclipse, go to Help -> Eclipse Marketplace) [Read more about importing AltoroJ into Eclipse from GitHub here](https://github.com/AppSecDev/AltoroJ/blob/master/Importing%20AltoroJ%20into%20Eclipse%20from%20GitHub.md) # AltoroJ credentials Main usernames and passwords for AltoroJ are as follows: - jsmith/demo1234 - admin/admin # Advanced options AltoroJ’s original design goals were to create an application that is easy to deploy, very stable and less dangerous (as far as vulnerable web apps go). However, these goals meant that certain attacks couldn’t be a part of it. Because of this, there are advanced user-configurable properties that can enable AltoroJ behaviors which are disabled by default.These enable extra functionality, new cool attacks and demos as well as optional behaviors. Please see WEB-INF/app.properties file for more information on each property # REST API AltoroJ has a fairly extensive REST API, which is documented using Swagger. You can find out more about and interact with the provided REST services by clicking on the REST API link in the footer of almost every AltoroJ page. # Troubleshooting - Problem: AltoroJ runs, but an error “Failed to create database 'altoro‘” comes up when you try to log in - Cause: AltoroJ database does not get created. This is usually caused by folder permission issues on a locked-down system - Solution: To make sure this isn’t a fluke, try to log in again using jsmith/demo1234. AltoroJ uses Java’s user.home property as a base directory for its database so this shouldn’t happen. However, if it does. Take a look at your Eclipse Console, or if running directly on Tomcat, open "catalina.out" file from Tomcat’s logs folder in a text editor and look for “user.home=“. This is the folder that AltoroJ is trying to create another folder in and needs write access. You can then: Give the user Tomcat runs under read/write/create access to this folder (recommended) OR modify Tomcat’s startup to include –Duser.home=“<new_path>” in Java arguments to change DB location - Problem: AltoroJ does not run on Tomcat due to compilation errors - Cause: If you have compilation errors in Eclipse, Java build path is likely to blame - Solution: Run AltoroJ's Gradle build in order to download required third party libraries and build AltoroJ # License All files found in this project are licensed under the [Apache License 2.0](https://github.com/AppSecDev/AltoroJ/blob/master/LICENSE).
1
aws-samples/amazon-qldb-double-entry-sample-java
This sample app is aimed at demonstrating how to model a double entry financial ledger application with QLDB.
null
## Amazon QLDB Double Entry Sample App This sample app is aimed at demonstrating how to model a double entry financial ledger application with QLDB. ## Table of Contents * [Amazon QLDB Double Entry Sample App](#amazon-qldb-double-entry-sample-app) * [Setup](#setup) * [Tasks](#tasks) * [Setting up the Ledger](#setting-up-the-ledger) * [Setting up the Tables](#setting-up-the-tables) * [TransferMoney](#transfermoney) * [Structure of the repository](#structure-of-the-repository) * [Key takeaways](#key-takeaways) * [Release Notes](#release-notes) * [License](#license) ## Setup 1. Install Gradle. See [Instructions.](https://gradle.org/install/) 2. Clone the sample app using the following command `git clone https://github.com/aws-samples/amazon-qldb-double-entry-sample-java` 3. Make sure you have valid AWS credentials setup. The AWS SDK used in the app will load the credentials automatically as long as you have setup the credentials using one of the methods mentioned in [setup-credentials guide](http://docs.aws.amazon.com/java-sdk/latest/developer-guide/setup-credentials.html) 4. Build the project `./gradlew build` 5. Run the gradle tasks `./gradlew run -Dtask=<NameOfTheTask>` ## Tasks There are three tasks in the sample which help you understand how to use Amazon QLDB: 1. The *Setup Ledger* task helps you understand how to create a ledger using Amazon QLDB API. 2. The *Setup Tables* task will create tables, then create indexes on the tables and finally, will load sample data. 3. The *Transfer Money* task will show a use case of transferring money from one account to another. This task will show how to query the tables, how to run transactions and how conflicts are handled. ### Setting up the Ledger To run this task, do `./gradlew run -Dtask=SetupLedger` We perform three actions as part of this task 1. Create Ledger 2. Describe Ledger 3. List Ledgers We first call the `CreateLedger` API of QLDB, which starts the ledger creation process. At this point of time, the status of the ledger will be `CREATING` as QLDB takes short amount of time to create the ledger. In order to confirm if the ledger creation is complete, we poll QLDB via `DescribeLedger` API, at a fixed interval and check if the status has changed to `ACTIVE`. Once the status changes to `ACTIVE`, we are sure that the ledger creation has succeeded. Finally, we use the `ListLedgers` API to list all the ledgers that we have created up until now. ### Setting up the Tables To run this task, do: `./gradlew run -Dtask=SetupTables` We perform three actions as part of this task: 1. Create Tables 2. Create Indexes 3. Load Sample Data For this sample app, we have three tables: 1. **Businesses**: This table stores the data about the businesses like name, address, etc... Each business will have one or more accounts associated with it. 2. **Accounts**: Stores account data like account Id, type of account, balances etc. Each account is associated with a business. 3. **Transactions**: This table acts as an accounting journal. For every transfer of money, we create a single entry that shows the accounts debited and credited. *Note: In Accounting, double entry is a concept where for each transaction(in our case transfer of money), we record two entries in the journal. One debit entry to show deduction from Sender account and another credit entry to show increment in the receiver account.* *As Amazon QLDB uses documents to store the data, we can create a single document which club together the debit and credit entries. This gives us the ability to view the transaction on the whole with just one entry.* *Furthermore, using this model gives a flexibility to extend the document to accommodate compound entries, which is used to record a transfer where multiple credit accounts and/or multiple debit accounts are involved* #### Schema ![E-R (without attributes)](images/ERWithoutAttributes.png) The attributes of the tables are Businesses | Accounts | Transactions ------------------- | ---------- | -------- Name | Account Id | Sender Account Entry\* Registered Address | Business Id | Receive Account Entry\* Business Id | Account Type | Date of registration | Balances | \*The sender account and receiver account entries will each have following attributes 1. Account Id 2. Transaction Type (Debit or Credit) 3. Amount 4. Currency 5. Notes We also create following indexes: 1. Business Table: *BusinessId* 2. Accounts Table: *AccountId*, *BusinessId* Read more about QLDB indexes in our [developer guide](https://docs.aws.amazon.com/qldb/latest/developerguide/ql-reference.create-index.html) ### TransferMoney To run this task, do `./gradlew run -Dtask=TransferMoney --args <Name of the Argument Eg: singleTransfer>` This task also takes additional argument to indicate the kind of transfer to be done. There are two types supported: 1. **singleTransfer**: This demonstrates a simple use case of making only one transfer between two accounts. There are no conflicting transfers happening in the system. 2. **parallelTransfers**: This demonstrates a complex use case of multiple transfers (3 in this case) happening at the same time between 3 accounts. Some transfers might run into [OCC errors](https://docs.aws.amazon.com/qldb/latest/developerguide/concurrency.html) To transfer the amount we perform the following steps as a part of a single Amazon QLDB transaction 1. Read the Balances of the Sender Account 2. Read the Balances of the Receiver Account 3. Check if Sender Account and Receiver Accounts support the currency and Sender Account has balance more than the requested transfer amount 4. Once the above checks pass, we create an entry in the Transactions table 5. Calculate and update the balance of Sender Account 6. Calculate and update the balance of Receiver Account When there are multiple transfers happening in the system, if there is an OCC while committing the transaction, then the QLDB Driver (or specifically, QLDB session) takes care of retrying the entire transaction. The failed transaction will start again from, reading the balances, doing the business validations again with the new values, and then updating the balances to the correct values. If this attempt fails as well, the driver will retry all over again. The driver will keep retrying till either the transaction succeeds or it hits the maximum retry attempt limit (specified when instantiating the *PooledQLDBDriver*). ## Structure of the repository **Tasks**: This module contains all the classes that can be executed from the command line. These also serve as entry points into the application. You can run any task as follows: `./gradlew run -Dtask=<NameOfTheTask>` **actions**: All the classes that interact with QLDB. **models**: Contains the classes for models for the tables in QLDB. **models/qldb**: Contains classes to map QLDB models. **helper**: Contains all helper classes. ## Key takeaways 1. We leverage the document model of Amazon QLDB to create a single document in the transactions table to record a transfer instead of creating two different entries. This also provides flexibilty of extending the model to accommodate compound accounting entries in future. 2. Using the *execute* convenience method, a QLDB session (via the driver) makes it easy to handle OCC exceptions. The method ensures that all the steps in the transaction block that is passed to the method will be retried, and the commit will be attempted again in the event of an OCC conflict exception. ## Release Notes **Release 1.0** * Initial preview release of the Amazon QLDB double entry sample application. ## License This library is licensed under [the MIT-0 License](https://github.com/aws/mit-0).
1
dampcake/Robolectric-JaCoCo-Sample
Sample of using JaCoCo 0.7.6+ with Gradle 2.13+
null
# Robolectric-JaCoCo-Sample # This project initially started out as a way to reproduce robolectric/robolectric#2230. It has since been updated to show how to get JaCoCo 0.7.6+ working with Robolectric and Android. ** Note ** This requires Gradle 2.13 for the moment. You can see the pull request here: gradle/gradle#575. If this gets pulled into another version I will update the sample. ## Running ## To run the sample simply clone it and run `gradlew testDebugUnitTestCoverage` ## Reports ## You can find the output from the reports in the `app/build/reports/jacoco` folder.
1
tomnelson/jungrapht-visualization
visualization and sample code from Java Universal Network Graph ported to use JGraphT models and algorithms
data-visualization graph-visualization graph-visualization-toolkit java-graph-library java2d layout-algorithm network-graph network-visualization social-network social-network-analysis sugiyama
## JUNGRAPHT-VISUALIZATION: The [JUNG](http://jung.sourceforge.net) visualization and sample code modernized and ported to use [JGraphT](https://jgrapht.org) graphs and algorithms ![build workflow](https://github.com/tomnelson/jungrapht-visualization/actions/workflows/build.yml/badge.svg) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.tomnelson/jungrapht-visualization/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.tomnelson/jungrapht-visualization) [![Snapshot](https://img.shields.io/nexus/s/https/oss.sonatype.org/com.github.tomnelson/jungrapht-visualization.svg)](https://oss.sonatype.org/content/repositories/snapshots/com/github/tomnelson/jungrapht-visualization/) [![License](https://img.shields.io/badge/license-BSD3%202.1-blue.svg)](http://www.opensource.org/licenses/BSD-3-Clause) [![Language](http://img.shields.io/badge/language-java-brightgreen.svg)](https://www.java.com/) [**JUNGRAPHT-VISUALIZATION Website**](http://tomnelson.github.io/jungrapht-visualization/) JUNGRAPHT-VISUALIZATION can be used to render any of the following: * org.jgrapht.Graph * com.google.common.graph.Network * com.google.common.graph.Graph JUNGRAPHT-VISUALIZATION includes performance enhancements for visualization of large networks, including R*Tree for visualization, Barnes-Hut Quad Tree for force-directed layouts, and a lightweight rendering layer that can swap in while graphs are being animated or when they are zoomed out to a point where details are very small. In the **ShowLayoutsWithJGraptIO** demonstration program, the lightweight rendering layer allows fast enough rendering that the performance impact of the Barnes Hut Quad Tree for the force directed layout becomes obvious. Many rendering features may be set via java properties (see [sample.jungrapht.properties](https://github.com/tomnelson/jungrapht-visualization/blob/master/jungrapht-visualization/src/main/resources/sample.jungrapht.properties) for keys and default values). JUNGRAPHT-VISUALIZATION includes the jungrapht-layout module, which is independent of any java.awt imports (so that it may be more easily used by JavaFX or other rendering systems). Jungrapht-layout includes improved layout algorithms for directed graphs and Trees, including the TidierTreeLayoutAlgorithm and the SugiyamaLayoutAlgorithm. All TreeLayoutAlgorithms will make a best attempt to draw any directed graph (by ignoring cycles and reversing feedback edges) for which one or more Root vertices can be determined. Any TreeLayoutAlgorithm, when given an undirected graph, will create a SpanningTree in order to use the TreeLayoutAlgorithm. There are Vertex/Edge Predicates and Vertex/Edge Comparators that are used to coerce out the desired tree structure based on a user-defined procedure to find roots and follow the desired path. All TreeLayoutAlgorithms, including the TidierTreeLayoutAlgorithm, will draw either single or multiple rooted 'forest' graphs. CircleLayout has been improved with an option to reduce edge crossing. JUNGRAPHT-VISUALIZATION Design and Features: [LayoutAlgorithm and LayoutModel](LayoutAlgorithms_and_LayoutModel.md) [MouseGestures](MouseGestures.md) Graph using TidierTreeLayoutAlgorithm ![Image TidierTree](images/tidiertree.jpg) Graph using SugiyamaLayoutAlgorithm ![Image SugiyamaLayout](images/sugiyama2.jpg) Graph using Eiglsperger Optimization of SugiyamaLayoutAlgorithm ![Image SugiyamaLayout](images/eiglspergersugiyama.jpg) Graph using CircleLayoutAlgorithm ![Image CircleLayout](images/CircleLayout.jpg) Same graph using CircleLayoutAlgorithm with reduced edge crossing ![Image ReducedEdgeCrossing](images/ReducedEdgeCrossingCircleLayout.jpg) ### Latest Release The most recent version of JUNGRAPHT-VISUALIZATION is [version 1.4](https://github.com/tomnelson/jungrapht-visualization/releases/tag/v1.4), released 20 March 2023. * [Javadoc](http://tomnelson.github.io/jungrapht-visualization/javadoc/index.html) * [Maven Search Repository](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.github.tomnelson%22%20AND%20v%3A%221.4%22%20AND%20(a%3A%22jungrapht-visualization%22%20OR%20a%3A%22jungrapht-visualization-samples%22)) * `jungrapht-visualization`: [jar](http://search.maven.org/remotecontent?filepath=com/github/tomnelson/jungrapht-visualization/1.4/jungrapht-visualization-1.4.jar), [source jar](http://search.maven.org/remotecontent?filepath=com/github/tomnelson/jungrapht-visualization/1.4/jungrapht-visualization-1.4-sources.jar), [documentation jar](http://search.maven.org/remotecontent?filepath=com/github/tomnelson/jungrapht-visualization/1.4/jungrapht-visualization-1.4-javadoc.jar) * `jungrapht-layout`: [jar](http://search.maven.org/remotecontent?filepath=com/github/tomnelson/jungrapht-layout/1.4/jungrapht-layout-1.4.jar), [source jar](http://search.maven.org/remotecontent?filepath=com/github/tomnelson/jungrapht-layout/1.4/jungrapht-layout-1.4-sources.jar), [documentation jar](http://search.maven.org/remotecontent?filepath=com/github/tomnelson/jungrapht-layout/1.4/jungrapht-layout-1.4-javadoc.jar) * `jungrapht-visualization-samples`: [jar](http://search.maven.org/remotecontent?filepath=com/github/tomnelson/jungrapht-visualization-samples/1.4/jungrapht-visualization-samples-1.4.jar), [source jar](http://search.maven.org/remotecontent?filepath=com/github/tomnelson/jungrapht-visualization-samples/1.4/jungrapht-visualization-samples-1.4-sources.jar), [documentation jar](http://search.maven.org/remotecontent?filepath=com/github/tomnelson/jungrapht-visualization-samples/1.4/jungrapht-visualization-samples-1.4-javadoc.jar) To add a dependency on this release of JUNGRAPHT-VISUALIZATION using Maven, use the following: ```xml <dependency> <groupId>com.github.tomnelson</groupId> <artifactId>jungrapht-visualization</artifactId> <version>1.4</version> </dependency> ``` ### Snapshots Snapshots of JUNGRAPHT-VISUALIZATION built from the `master` branch are available through Maven using version `1.5-SNAPSHOT`. ### Links * [GitHub project](https://github.com/tomnelson/jungrapht-visualization) * [Issue tracker: report a defect or make a feature request](https://github.com/tomnelson/jungrapht-visualization/issues/new)
1
gstamatelat/random-sampling
A collection of algorithms in Java 8 for the problem of random sampling with a reservoir
algorithm random-sampling reservoir-sampling stream-sampling
# Random Sampling A collection of algorithms in Java 8 for the problem of random sampling with a reservoir. Reservoir sampling is a family of randomized algorithms for randomly choosing a sample of `k` items from a list `S` containing `n` items, where `n` is either a very large or unknown number. Typically `n` is large enough that the list doesn't fit into main memory. [1] In this context, the sample of `k` items will be referred to as ***sample*** and the list `S` as ***stream***. This package distinguishes these algorithms into two main categories: the ones that assign a weight in each item of the source stream and the ones that don't. These will be referred to as weighted and unweighted random sampling algorithms respectively. In unweighted algorithms, each item in the stream has probability `k/n` in appearing in the sample. In weighted algorithms this probability depends on the extra parameter `weight`. Each algorithm may interpret this parameter in a different way, for example in [2] two possible interpretations are mentioned. ## Using You can add a dependency from your project as follows: Using Maven ```xml <dependency> <groupId>gr.james</groupId> <artifactId>random-sampling</artifactId> <version>0.28</version> </dependency> ``` Using Gradle ```gradle implementation 'gr.james:random-sampling:0.28' // Runtime api 'gr.james:random-sampling:0.28' // Public API ``` ## Examples Select 10 numbers at random in the range [1,100]. Each number has a 10% probability of appearing in the sample. ```java RandomSampling<Integer> rs = new WatermanSampling<>(10, new Random()); rs.feed(IntStream.rangeClosed(1, 100).boxed().iterator()); Collection<Integer> sample = rs.sample(); System.out.println(sample); ``` Select 5 random tokens from an input stream. ```java RandomSampling<String> rs = new VitterXSampling<>(5, new Random()); rs.feed(new Scanner(System.in)); System.out.println(rs.sample()); ``` Same example using Algorithm Z. ```java RandomSampling<String> rs = new VitterZSampling<>(5, new Random()); rs.feed(new Scanner(System.in)); System.out.println(rs.sample()); ``` Select 2 terms from a vocabulary, based on their weight. ```java WeightedRandomSampling<String> rs = new EfraimidisSampling<>(2, new Random()); rs.feed("collection", 1); rs.feed("algorithms", 2); rs.feed("java", 2); rs.feed("random", 3); rs.feed("sampling", 4); rs.feed("reservoir", 5); System.out.println(rs.sample()); ``` Unweighted random sampling using the Java 8 stream API. ```java RandomSamplingCollector<Integer> collector = WatermanSampling.collector(5, new Random()); Collection<Integer> sample = IntStream.range(0, 20).boxed().collect(collector); System.out.println(sample); ``` Weighted random sampling using the Java 8 stream API. ```java WeightedRandomSamplingCollector<String> collector = ChaoSampling.weightedCollector(2, new Random()); Map<String, Double> map = new HashMap<>(); map.put("collection", 1.0); map.put("algorithms", 2.0); map.put("java", 2.0); map.put("random", 3.0); map.put("sampling", 4.0); map.put("reservoir", 5.0); Collection<String> sample = map.entrySet().stream().collect(collector); System.out.println(sample); ``` ## Algorithms | Class | Algorithm | Space | Weighted | | :-------------------------- | :---------------------------- | :----- | :------- | | `WatermanSampling` | Algorithm R by Waterman | `O(k)` | | | `VitterXSampling` | Algorithm X by Vitter | `O(k)` | | | `VitterZSampling` | Algorithm Z by Vitter | `O(k)` | | | `LiLSampling` | Algorithm L by Li | `O(k)` | | | `EfraimidisSampling` | Algorithm A-Res by Efraimidis | `O(k)` | &#10004; | | `ChaoSampling` | Algorithm by Chao | `O(k)` | &#10004; | | `SequentialPoissonSampling` | Algorithm by Ohlsson | `O(k)` | &#10004; | | `ParetoSampling` | Algorithm by Rosén | `O(k)` | &#10004; | ### 1 Algorithm R by Waterman Signature: `WatermanSampling` implements `RandomSampling` #### References - The Art of Computer Programming, Vol II, Random Sampling and Shuffling. ### 2 Algorithm X by Vitter Signature: `VitterXSampling` implements `RandomSampling` #### References - [Vitter, Jeffrey S. "Random sampling with a reservoir." ACM Transactions on Mathematical Software (TOMS) 11.1 (1985): 37-57.](https://doi.org/10.1145/3147.3165) ### 3 Algorithm Z by Vitter Signature: `VitterZSampling` implements `RandomSampling` #### References - [Vitter, Jeffrey S. "Random sampling with a reservoir." ACM Transactions on Mathematical Software (TOMS) 11.1 (1985): 37-57.](https://doi.org/10.1145/3147.3165) ### 4 Algorithm L by Li Signature: `LiLSampling` implements `RandomSampling` #### References - [Li, Kim-Hung. "Reservoir-sampling algorithms of time complexity O (n (1+ log (N/n)))." ACM Transactions on Mathematical Software (TOMS) 20.4 (1994): 481-493.](https://doi.org/10.1145/198429.198435) ### 5 Algorithm A-Res by Efraimidis Signature: `EfraimidisSampling` implements `WeightedRandomSampling` #### References - [Efraimidis, Pavlos S., and Paul G. Spirakis. "Weighted random sampling with a reservoir." Information Processing Letters 97.5 (2006): 181-185.](https://doi.org/10.1016/j.ipl.2005.11.003) ### 6 Algorithm by Chao Signature: `ChaoSampling` implements `WeightedRandomSampling` #### References - [Chao, M. T. "A general purpose unequal probability sampling plan." Biometrika 69.3 (1982): 653-656.](https://doi.org/10.2307/2336002) - [Sugden, R. A. "Chao's list sequential scheme for unequal probability sampling." Journal of Applied Statistics 23.4 (1996): 413-421.](https://doi.org/10.1080/02664769624152) ### 7 Algorithm by Ohlsson Signature: `SequentialPoissonSampling` implements `WeightedRandomSampling` #### References - [Ohlsson, Esbjörn. "Sequential poisson sampling." Journal of official Statistics 14.2 (1998): 149.](https://www.mendeley.com/catalogue/95bcff1f-86be-389c-ab3f-717796d22abd/) ### 7 Algorithm by Rosén Signature: `ParetoSampling` implements `WeightedRandomSampling` #### References - [Rosén, Bengt. "Asymptotic theory for order sampling." Journal of Statistical Planning and Inference 62.2 (1997): 135-158.](https://doi.org/10.1016/S0378-3758(96)00185-1) - [Rosén, Bengt. "On sampling with probability proportional to size." Journal of statistical planning and inference 62.2 (1997): 159-191.](https://doi.org/10.1016/S0378-3758(96)00186-3) ## References [1] [Wikipedia contributors. "Reservoir sampling." Wikipedia, The Free Encyclopedia. Wikipedia, The Free Encyclopedia, 17 Oct. 2017. Web. 21 Nov. 2017.](https://en.wikipedia.org/wiki/Reservoir_sampling) [2] [Efraimidis, Pavlos S. "Weighted random sampling over data streams." Algorithms, Probability, Networks, and Games. Springer International Publishing, 2015. 183-195.](https://doi.org/10.1007/978-3-319-24024-4_12)
0
Washingtonwei/hogwarts-artifacts-online
This is a sample back-end application designed to demonstrate typical use cases and best practices in Spring Boot development.
api-rest azure ci-cd docker docker-compose oop-principles openai-api spring spring-boot spring-data-jpa spring-mvc spring-security springframework uml
# Hogwarts Artifacts Online - Spring Boot Application [![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/Washingtonwei/hogwarts-artifacts-online/maven-build.yml?logo=apachemaven&label=Maven%20Build)](https://github.com/Washingtonwei/hogwarts-artifacts-online/actions/workflows/maven-build.yml) [![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/Washingtonwei/hogwarts-artifacts-online/azure-webapps-deploy.yml?logo=microsoftazure&label=Azure%20Deployment)](https://github.com/Washingtonwei/hogwarts-artifacts-online/actions/workflows/azure-webapps-deploy.yml) ![Dynamic XML Badge](https://img.shields.io/badge/dynamic/xml?url=https%3A%2F%2Fraw.githubusercontent.com%2FWashingtonwei%2Fhogwarts-artifacts-online%2Fmain%2Fpom.xml&query=%2F*%5Blocal-name()%3D'project'%5D%2F*%5Blocal-name()%3D'properties'%5D%2F*%5Blocal-name()%3D'java.version'%5D&label=Java) ![Dynamic XML Badge](https://img.shields.io/badge/dynamic/xml?url=https%3A%2F%2Fraw.githubusercontent.com%2FWashingtonwei%2Fhogwarts-artifacts-online%2Fmain%2Fpom.xml&query=%2F*%5Blocal-name()%3D'project'%5D%2F*%5Blocal-name()%3D'parent'%5D%2F*%5Blocal-name()%3D'version'%5D&label=Spring%20Boot) ![Dynamic XML Badge](https://img.shields.io/badge/dynamic/xml?url=https%3A%2F%2Fraw.githubusercontent.com%2FWashingtonwei%2Fhogwarts-artifacts-online%2Fmain%2Fpom.xml&query=%2F*%5Blocal-name()%3D'project'%5D%2F*%5Blocal-name()%3D'properties'%5D%2F*%5Blocal-name()%3D'spring-cloud-azure.version'%5D&label=Spring%20Cloud%20Azure) ## What is 🧙‍♂️ Hogwarts Artifacts Online 🧙‍♀️? Welcome to *Hogwarts Artifacts Online*, a sample back-end application designed to demonstrate typical use cases and best practices in Spring Boot development. I wrote this sample application **line-by-line from scratch** in my YouTube course titled ["Learn Spring Boot 3 with Bingyang" ![Static Badge](https://img.shields.io/badge/YouTube-white?logo=youtube&logoColor=red)](https://youtube.com/playlist?list=PLqq9AhcMm2oPdXXFT3fzjaKLsVymvMXaY&si=QTkudVtqVpO1jPBA). Throughout the course, *Hogwarts Artifacts Online* serves as a running example and is developed progressively. That is, each episode introduces new Spring Boot features that add functionality or improvements to this project. This approach helps you see how different concepts fit together in a practical context. In addition to exploring the features of Spring Boot, the course delves into essential software engineering practices. We will start by framing user stories, then move on to crafting REST APIs and applying object-oriented design principles. Embracing test-driven development, we will meticulously build and refine each feature. The culmination of this journey is setting up a comprehensive CI/CD pipeline, ensuring smooth deployment of the application. **Suitable for Muggles and Wizards Alike** Whether you're new to Spring Boot or an experienced developer looking to add some magic to your skillset, *Hogwarts Artifacts Online* is the perfect place to start. As you follow along with the videos, I encourage you to actively code alongside me. Engaging in hands-on practice is an excellent method for mastering programming skills. So grab your wand 🪄 (or keyboard ⌨️) and prepare to embark on a journey into ["Learn Spring Boot 3 with Bingyang" ![Static Badge](https://img.shields.io/badge/YouTube-white?logo=youtube&logoColor=red)](https://youtube.com/playlist?list=PLqq9AhcMm2oPdXXFT3fzjaKLsVymvMXaY&si=QTkudVtqVpO1jPBA)! ## What Will You Learn? Through my YouTube course, you will gain practical experience in: - **Dependency Injection** and the use of Spring Framework's core container. - Building the web layer with **Spring MVC (Model-View-Controller)**. - Data persistence in relational databases using **Spring Data JPA (Jakarta Persistence API)**. - User authentication and authorization with **Spring Security** and **JWT (JSON Web Tokens)**. - Deploying a Spring Boot application to a cloud platform with **Spring Cloud Azure**. - Monitoring a running Spring Boot application in the production with **Spring Boot Actuator**. - Making requests to OpenAI API with **RestClient**. - Paging and sorting. - Writing dynamic queries with Spring Data JPA Specifications. - And more. Additionally, my course emphasizes good software engineering practices, such as: - Defining software requirements with **User Stories**. - Version control and project planning using **Git and GitHub**. - The **API-First Approach** in designing effective REST APIs. - **Test-Driven Development (TDD)**: writing tests first, then coding to pass the tests, and refactoring. - **Object-Oriented Design** with UML. - **CI/CD (Continuous Integration and Continuous Delivery)** with GitHub Actions. ## Documentation ### Project User Stories 🔗 [The mind map of the Hogwarts Artifacts Online user stories](https://xmind.app/m/A2Spvq) ### API Documentation 🔗 [Hogwarts Artifacts Online API Documentation](https://app.swaggerhub.com/apis/Washingtonwei/hogwarts-openapi) ## Run Hogwarts Artifacts Online Locally ### Installation 1. **Clone the repository:** ```bash git clone https://github.com/Washingtonwei/hogwarts-artifacts-online.git ``` 2. **Navigate to the project directory:** ```bash cd hogwarts-artifacts-online ``` 3. **Run the application:** Since *Hogwarts Artifacts Online* is a Spring Boot application built using Maven, you can run it from Maven directly using the Spring Boot Maven plugin: ```bash ./mvnw spring-boot:run ``` Or on Windows: ```bash .\mvnw.cmd spring-boot:run ``` ## Building a Container There is a `Dockerfile` in this project. You can build a container image (if you have a docker daemon): ```bash docker build . ``` ## Database Configuration In its default configuration, *Hogwarts Artifacts Online* uses an in-memory database (H2) which gets populated at startup with data. The H2 console is available at <http://localhost/h2-console>, and it is possible to inspect the content of the database using the `jdbc:h2:mem:hogwarts` URL. I have defined a class [`edu.tcu.cs.hogwartsartifactsonline.system.DBDataInitializer`](https://github.com/Washingtonwei/hogwarts-artifacts-online/blob/main/src/main/java/edu/tcu/cs/hogwartsartifactsonline/system/DBDataInitializer.java) to populate the H2 database at startup. ## Accessing the API Endpoints [![Static Badge](https://img.shields.io/badge/Postman-white?logo=postman&logoColor=red)](https://www.postman.com/bingyang-wei/workspace/youtube-workspace/collection/7025773-2279d7bf-70f4-4825-9a74-8f46a6b6efaa?action=share&creator=7025773) [<img src="https://run.pstmn.io/button.svg" alt="Run In Postman" style="width: 128px; height: 32px;">](https://god.gw.postman.com/run-collection/7025773-2279d7bf-70f4-4825-9a74-8f46a6b6efaa?action=collection%2Ffork&source=rip_markdown&collection-url=entityId%3D7025773-2279d7bf-70f4-4825-9a74-8f46a6b6efaa%26entityType%3Dcollection%26workspaceId%3D4369fd7f-4a25-4f67-bc60-4acc92fc0c9e) ## Contributing The [issue tracker](https://github.com/Washingtonwei/hogwarts-artifacts-online/issues) is the preferred channel for bug reports, feature requests, and submitting pull requests. ## License The *Hogwarts Artifacts Online* application is released under version 2.0 of the [Apache License](https://www.apache.org/licenses/LICENSE-2.0). ## Acknowledgements - Inspired by the Spring PetClinic Sample Application. - Inspired by J.K. Rowling's Harry Potter series. ## YouTube Videos If you're looking to enhance your understanding of this Spring Boot tutorial, I highly recommend watching the accompanying YouTube video playlist. It provides a comprehensive walk-through of the concepts and code discussed here, complete with visual demonstrations and step-by-step explanations. Whether you're a visual learner or just prefer a more interactive approach, those videos are a valuable resource to solidify your grasp of Spring Boot. Check them out now below to dive deeper into the world of Spring Boot development! 1. [Introduction to Spring Boot 3 Tutorial](https://youtu.be/asS2kcalidY) 2. [What is Spring?](https://youtu.be/B7irjHrHAJo) 3. [Inversion of Control and Dependency Injection](https://youtu.be/FqOQZ1Jvgng) 4. [What is Spring Boot?](https://youtu.be/dpJyNIsQPnc) 5. [Spring Boot Quick Demo](https://youtu.be/JIpaStgf7dE) 6. [Spring Boot Project Structure](https://youtu.be/UlwpnsCjcIs) 7. [Spring Boot Quick Demo Implementation](https://youtu.be/7wWLM-nGzPc) 8. [pom.xml Demystified](https://youtu.be/B7awqZkwvlc) 9. [spring-boot-starter-parent](https://youtu.be/KryEleNWawA) 10. [Introduction to Hogwarts Artifacts Online](https://youtu.be/n5AwXuDeWW8) 11. [Requirements of the Project](https://youtu.be/98npP43Y56g) 12. [Creating a Spring Boot Project and Pushing it to GitHub](https://youtu.be/W7xJf5Wknho) 13. [Project Planning Using GitHub Issues](https://youtu.be/vaIwnefOKZ4) 14. [API-First Approach](https://youtu.be/R0FtVayTJLk) 15. [Creating a Feature Branch for Issue 1 Artifact CRUD](https://youtu.be/yULf9LwWabo) 16. [Object-Oriented Design Using Class Diagram](https://youtu.be/bSLXER_84i8) 17. [Object-Oriented Design Using Sequence Diagram](https://youtu.be/rShN11Hrj-4) 18. [Creating Controller, Service, and Repository for Artifacts](https://youtu.be/Dv1rDEBlkkY) 19. [Introduction to Test Driven Development (TDD)](https://youtu.be/wsny05elumw) 20. [Implementing ArtifactService Using TDD](https://youtu.be/ZjfEpuW8JSM) 21. [Implementing ArtifactController Using TDD](https://youtu.be/BM7TjjJinXA) 22. [Populating the H2 Database with Test Data](https://youtu.be/EGHQZBLAPuQ) 23. [API Integration Testing, Postman, JSON Infinite Recursion, and Data Transfer Object (DTO)](https://youtu.be/N_XlgBpdt6I) 24. [Implementing Find All Artifacts (User Story in GitHub Issue 1)](https://youtu.be/wreoEbmW83w) 25. [Implementing Add an Artifact (User Story in GitHub Issue 1)](https://youtu.be/qe0jM0E8kko) 26. [Implementing Update an Artifact (User Story in GitHub Issue 1)](https://youtu.be/uXh361rDST8) 27. [Implementing Delete an Artifact (User Story in GitHub Issue 1)](https://youtu.be/Rsd9FyQzwDc) 28. [Pushing a Feature Branch to GitHub and Creating a Pull Request](https://youtu.be/Uc9JnXfIv-4) 29. [Homework (Wizard CRUD APIs, Issue 2)](https://youtu.be/bFGhTN5CUTs) 30. [Wizard CRUD APIs (Issue 2) Homework Solution](https://youtu.be/HXmsEk9nXWs) 31. [Code Refactoring](https://youtu.be/kTNArwaaUN4) 32. [Implementing Artifact Assignment (Issue 3)](https://youtu.be/W_55A9hAddw) 33. [Implementing User CRUD APIs](https://youtu.be/-1rRqa7oORI) 34. [Introduction to Spring Security](https://youtu.be/PDAda_bQAv0) 35. [Implementing HTTP Basic Authentication in Spring Boot](https://youtu.be/GtmQ1Yw8QNc) 36. [Introduction to JWT](https://youtu.be/WrmGrmF6sc4) 37. [Generating JWTs in Spring Boot](https://youtu.be/P2L7DvxQC_I) 38. [Handling Spring Security Exceptions Using @ControllerAdvice](https://youtu.be/sCYoQIBND6w) 39. [Testing with Spring Security](https://youtu.be/o9FlC_auq64) 40. [Enabling CORS in Spring Boot](https://youtu.be/5HAzLAnJPKU) 41. [Committing and Pushing to a GitHub Repo](https://youtu.be/RbpmXJdo6KM) 42. [Introduction to Spring Boot Packaging and Deployment](https://youtu.be/8XgRTB_1xws) 43. [Packaging a Spring Boot Application into an Executable JAR](https://youtu.be/O2hbIjEteYU) 44. [Containerizing a Spring Boot Application](https://youtu.be/i6xuO_HBdX4) 45. [Introduction to CI and CD with GitHub Actions](https://youtu.be/wWci4Belkb0) 46. [Spring Boot Continuous Integration with GitHub Actions](https://youtu.be/0QyBY1tMoVk) 47. [Deploying Spring Boot Applications to Azure with GitHub Actions](https://youtu.be/ClyrdJMCE8o) 48. [Setting Up Staging Environments in Azure App Service](https://youtu.be/kkKnandU_KM) 49. [Connecting Spring Boot to a MySQL Database with Azure Key Vault](https://youtu.be/Giqn99rZGaM) 50. [Spring Boot Actuator](https://youtu.be/u51q4Oq0a5k) 51. [Observing a Spring Boot Application with Actuator, Prometheus, Grafana, and Zipkin](https://youtu.be/aqwGRRgiMPI) 52. [Upgrading a Spring Boot Application](https://youtu.be/EkxgbjFqOrY) 53. [Connecting Spring Boot to OpenAI with RestClient](https://youtu.be/WMSYLAby2YU)
1
learn-tdd-in/react-native
A sample project demonstrating how to do Test-Driven Development in React Native using Detox and RNTL.
null
null
1
03lafaye/LollipopDrawerToggle
Sample Code for the new Lollipop v7 ActionBarDrawerToggle with icon animation. Uses the new Toolbar API to provide an ActionBar.
null
LollipopDrawerToggle ==================== Sample code for using the appcompat v7 ActionBarDrawerToggle class with a navigation drawer. Uses the new Toolbar API to provide an ActionBar to the ActionBarActivity. The master branch uses an ActionBarActivity and a v7 Toolbar, the no-v7-support branch uses the ActionBarDrawerToggle with a standard framework Activity and Toolbar. Includes the new Material design hamburger button to up arrow animation on slide of the drawer. This is the animation used in Google apps such as the Play store and Photos. You may want to checkout Chris Renke's version of the icon animation (http://chrisrenke.com/drawerarrowdrawable) which surfaced slightly before the AppCompat library was updated.
1
DaveVoorhis/Spoing
Libraries and samples to ease building and deploying cross-platform (Windows, Linux, MacOS, and Web) applications from one Java source code base. No XML, CSS, HTML, or Javascript is required.
cross-platform desktop java linux macos rap rwt swt web windows
Spoing into Action! =================== Spoing is a set of libraries and sample source code to simplify building and deploying lightweight, fast-loading, cross-platform (Windows, Linux and MacOS) desktop and Web applications from one pure Java source code base. No XML, CSS, HTML, Javascript, or significantly-different Web/desktop Java source is required. In short: One Java source base gets you an application that runs on Windows, MacOS, Linux, and the Web. If you want to quickly write and deploy an application to run on any desktop and/or the Web, Spoing makes it easy to do it. Spoing includes everything you need to get started, including: * An embedded Tomcat server for launching Web applications (https://tomcat.apache.org/) * The SWT desktop UI libraries from Eclipse.org (https://www.eclipse.org/swt/) * The RAP/RWT Web UI libraries from Eclipse.org (https://www.eclipse.org/rap/) * Libraries to abstract away differences between SWT and RAP/RWT (https://www.eclipse.org/rap/developers-guide/devguide.php?topic=rwt.html) * Sample application code The provided libraries are easily separable, so you can either release for all supported platforms -- i.e., Windows, Linux, MacOS, Web -- or a subset if you wish. Future updates will: * Add improved documentation * Consider integration with (for example) Tabris (https://eclipsesource.com/products/tabris/) to enable mobile app targets; * Where possible, move portions of sample code to the libraries, to simplify creating new applications. ## Required JDK This release is intended for Java Development Kit (JDK) 11 and above, but can be recompiled using Eclipse or other IDE -- or the Maven pom.xml scripts -- to work with JDK 9 or above. You can obtain a JDK 11 and above from https://openjdk.java.net. Download the bundle appropriate to your environment, unarchive it to a directory of your choice, and set your PATH environment variable to point to its _bin_ directory. The Oracle JDK 11 or above from https://www.oracle.com/technetwork/java/javase/downloads/index.html should work, but hasn't been tested. The consumer-oriented run-time JRE 8 installer (e.g., https://download.java.net) should be considered obsolete. It was intended for a model of deployment that is no longer used, where a Java Virtual Machine (aka JVM, which is part of the Java Runtime Edition or JRE) was downloaded and installed separately from Java applications. Modern Java development bundles an application-specific JRE (generated using JDK tools) with each application. ## Running the Demo 1 - Install JDK 11 or higher, as described above. 2 - Install Apache Maven, if you have not already done so. See https://maven.apache.org/install.html 3 - Download this project to your system, if you have not already done so. 4 - Via the command-line, change to the project directory. Use Maven to clean and build the project: mvn clean mvn install 5 - To try a demo, change to the Demos directory. Use the command-line to run the Web or Desktop script appropriate to your operating system. Six scripts are provided, three desktop (Windows, MacOS and Linux) and three Web (Windows, MacOS, and Linux). The Web demos will start up a Web server which will remain running until explicitly terminated via Ctrl-c. When the server starts, it will show the URL to access the application. Normally, http://localhost:8080 will work.
0
dmytrodanylyk/lazy-data-loading
Sample demonstrate hot to load data from SQLite and parse it from Cursor on the fly when you need it.
null
Sample demonstrates lazy loading data from SQLite which means parsing data from `Cursor` on the fly when you need it (on-demand). For details see [appropriate articles](http://www.dmytrodanylyk.com/lazy-data-loading-from-sqlite).
1
HeeGyeong/CleanArchitectureSample
This is a sample for studying Clean Architecture. It was created to guide basic usage of structure, communication, DI, etc.
null
# Clean Architecture Sample ## Description Clean Architecture 스터디를 위하여 작성한 Sample Code. Clean Architecture 개념을 이해하 위하여 기본적인 구조, API 통신, DI 등의 기본적인 사용 방법을 가이드 하기 위하여 만들었습니다. ## Architecture Clean Architecture의 기본적인 구조. Data, Domain, Presentation 구조이며, Lint 사용을 위하여 Lint 모듈도 추가해 두었으나 Clean Architecture 구조에서는 제외하고 보아도 무관합니다. 기본적인 WebView에 대한 구조도 붙여두었으며, assets에 html 파일을 선언하여 테스트했습니다. ## Gradle Gradle에서의 공통된 코드를 최소화하고, 관리의 용의성을 높이기 위하여 Gradle을 공통화 하였습니다. Modular Architecture에 작업한 Gradle의 형태의 이전 버전으로, dependencies에 대한 설정을 따로 관리하지 않는 형태입니다. 좀 더 확장된 Gradle 공통화 코드를 확인하고 싶은 경우, [Modular Architecture](https://github.com/HeeGyeong/ModuleArchitecture)에서 확인하면 됩니다. 2022.09. Library Version에 관련된 gradle 파일 추가 [Gradle 파일을 분리하는 방법](https://heegs.tistory.com/110)은 블로그에서 확인하면 됩니다. ## Blog Clean Architecture에 대한 설명은 다음 블로그에 작성해 두었습니다. [Tistory Blog](https://heegs.tistory.com/61?category=915533 "Clean Architecture Example") # Utility ## Lint 여러가지 Custom Lint에 대한 조건을 작성하여 Module로 붙여두었습니다. 각 Detector Class에 어느 부분을 감지하는지에 대한 주석을 추가해두었습니다. @SuppressLint("Lint-ID")를 통해 Lint를 무시할 수 있습니다. ## DI Koin에서 Hilt로 마이그레이션 작업을 진행하였으며, 두 가지 DI의 사용 방법을 모두 확인할 수 있도록 Koin을 완전히 제거하지 않고 Application단에서 주석처리만 해두었습니다. Koin은 Module, Hilt는 Hilt Package를 확인하면 됩니다. ## Test Code **두 가지 Test 모두, Detail한 Test Code가 아닌 이러한 형태로 사용할 수 있다 정도의 가이드입니다.** ### Instrumented Test Presentation Layer에서 Espresso를 사용하 기본적은 Test Code를 작성해두었습니다. ### Lint Unit Test Lint Unit Test도 간단하게 작성을 해두었으며, 추후에 확인하여 작업하기 위한 기본 베이스 입니다. ## Android 12 Splash Screen 관련하여 확인할 수 있는 코드 추가. ## Code Coverage Code Coverage를 확인할 수 있도록 Jacoco라이브러리를 추가하였습니다. [Jacoco 사용 방법](https://heegs.tistory.com/131 "How to use Jacoco basics")은 블로그에 작성해 두었습니다. ## Ktor JetBrains에서 만든 Framework로 Kotlin을 사용하여 비동기 서버 및 클라이언트를 구축할 때 사용하는 오픈소스 입니다. [Ktor 사용 방법](https://heegs.tistory.com/133 "How to use Ktor")은 블로그에 작성해 두었습니다. ## RecyclerView Drag & Drop RecyclerView의 Item을 Drag & Drop을 하여 순서를 쉽게 변경할 수 있는 기능을 구현 해두었습니다. 기본적인 구조에 기본적인 기능만 구현하였기 때문에, 필요에 맞춰 별도의 Error Handling 작업이 필수적으로 들어가야 합니다. [RecyclerView Drag & Drop](https://heegs.tistory.com/139 "RecyclerView Drag & Drop")에 대한 설명은 블로그에 작성해 두었습니다.
1
HMS-Core/hms-video-editor-demo
HUAWEI Video Editor Kit provides full video editing functions like video import/export, editing and rendering. This sample code is used to describe how to integrate the Video Editor Kit SDK.
hms huawei java video video-editor
# HUAWEI Video Editor Kit Sample English | [中文](README_ZH.md) ## Table of Contents * [Introduction](#introduction) * [Project directory structure](#project-directory-structure) * [Running Procedure](#running-procedure) * [Supported environment](#supported-environment) * [License](#license) * [Code indexes for key functions](#code-indexes-for-key-functions) ## Introduction Huawei Video Editor Kit (Video Editor Kit) provided by Huawei to quickly build video editing capabilities. It provides two integration modes. - Video editor UI SDK, which provides product-level UIs and easy integration. - Video editor atomic capability SDK, which provides hundreds of underlying capability interfaces, including multiple AI algorithm capability interfaces, which can be flexibly selected based on service scenarios. - Screen recorder demo provide basic usage of screen recording. There are functions demonstrating usage of start/stop recording and setting configuration. - Template creation SDK, which provides the capability of creating and uploading templates. Both modes provide one-stop video editing capabilities, such as import, editing, rendering, export, and media resource management. These two modes provide high-performance, easy-to-use, and highly compatible interfaces, helping you easily build applications. ## Project directory structure ``` |-- com.huawei.videoeditorkit.videoeditdemo |--sdkdemo atomic capability SDK demo |--uidemo UI SDk demo |--screenrecorddemo Screen Recorder SDK Demo |--templatetooldemo Template Creation SDK Demo ``` ## Running Procedure - Clone the code base to the local host. - If you haven't already registered as a developer, register and create an app on [AppGalleryConnect](https://developer.huawei.com/consumer/en/service/josp/agc/index.html). - Obtain the agconnect-services.json file from [HUAWEI Developers]([https://developer.huawei.com/consumer/en/doc/development/Media-Guides/config-agc-0000001101108580](javascript:;)). - Place the agconnect-services.json file in the root directory of the demo. - If you need to use cloud-side service capabilities, you need to use the api_key value in agconnect-services.json to call MediaApplication.getInstance().setApiKey(String apiKey) during application initialization. - Compile and run on an Android device or emulator. Note: The package name in this project cannot be used to apply for agconnect-services.json. You can use a customized package name to apply for agconnect-services.json. You only need to change applicationId in application-level build.gradle to the same package name as the applied agconnect-services.json to experience Video Editor Kit services. ## Supported Environment Android SDK 24 or later and JDK 1.8 or later are recommended. ## Question or issues If you want to evaluate more about HMS Core, [r/HMSCore on Reddit](https://www.reddit.com/r/HuaweiDevelopers/) is for you to keep up with latest news about HMS Core, and to exchange insights with other developers. If you have questions about how to use HMS samples, try the following options: - [Stack Overflow](https://stackoverflow.com/questions/tagged/huawei-mobile-services) is the best place for any programming questions. Be sure to tag your question with `huawei-mobile-services`. - [Huawei Developer Forum](https://forums.developer.huawei.com/forumPortal/en/home?fid=0101187876626530001) HMS Core Module is great for general questions, or seeking recommendations and opinions. If you run into a bug in our samples, please submit an [issue](https://github.com/HMS-Core/hms-video-editor-demo/issues) to the Repository. Even better you can submit a [Pull Request](https://github.com/HMS-Core/hms-video-editor-demo/pulls) with a fix. ## License This sample code has obtained [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0). ## Code indexes for key functions ``` |-- HomeActivity: App home page, which can be redirected to the video creation page (MainActivity) and the open, independent AI capabilities. |-- Entries to AI capabilities on the home screen: |-- faceReenact(String imagePath): moving picture |-- faceSmile(String imagePath): auto-smile |-- aiColor(String filePath): AI color |-- timeLapse(String imagePath): auto-timelapse |-- videoSelection(String videoPath): highlight |-- objectSeg(String photoPath): object segmentation |-- headSeg(String photoPath): head segmentation |-- Color hair. **HairDyeingFragment** is launched. After a hair color is selected and successfully downloaded, **hairDyeing(Bitmap colormapBitmap)** is called for processing. |-- Beauty. **CameraActivity** and **CameraPreviewFragment** are launched. |-- MainActivity: video creation page, which can be switched to the editing screen (**ClipFragment**) and template home screen (**TemplateHomeFragment**). |-- MediaPickActivity: material selection screen. When there is a need to select materials from the album, this screen will be launched. |-- VideoClipsActivity: video editing screen, which can be entered via material import for creation or a draft. The upper part of the screen is the preview area, the middle part contains playback operations and the timeline, and the lower part is the two-level menu area. |-- MaterialEditFragment: preview area, where a material can be edited. It is the entry to the zooming in or out using two fingers, dragging, rotating, and other operations on the material selected on the preview area. |-- MenuClickManager: manager for menu clicks. The menu click event on the video editing screen is processed in the **handlerClickEvent** method. Each click event launches a corresponding fragment. All fragments inherit the **BaseFragment** abstract class, implementing the following methods: **initView**, **initObject**, **initData**, and **initEvent**. **initView** initializes the layout and component. The listener for the component is created in the **initEvent** method, to respond to the click event in each fragment and conduct relevant service logic processing. |-- Editing-related functions: |-- AssetCropFragment: cropping |-- AssetSplitFragment: splitting |-- GeneralSpeedFragment: video playback speed adjustment |-- AnimationPanelFragment: animation |-- StickerPanelFragment: sticker |-- EditPanelFragment: text |-- EditTextStyleFragment: text style |-- EditTextAnimateFragment: text animation |-- EditTextBubblesFragment: text bubble |-- EditTextFlowerFragment: artistic font |-- FilterPanelFragment: filter |-- EffectPanelFragment: special effect |-- FilterAdjustPanelView: adjustment |-- MaskEffectFragment: mask |-- FaceBlockingFragment: face mask |-- PersonTrackingFragment: track person |-- TransparencyPanelFragment: transparency |-- VideoProportionFragment: canvas ratio |-- CanvasBackgroundFragment: canvas background |-- AudioPickActivity and MusicLocalFragment: adding music |-- SoundEffectFragment: adding a sound effect |-- AudioSpeedFragment: audio playback speed adjustment |-- VolumePanelFragment: volume |-- KeyFrameFragment: key frame |-- CropNewActivity: cropping |-- Template-related functions: |-- TemplateHomeFragment: template home screen, which shows all template lists |-- TemplateDetailActivity: template details screen, which shows the effect of a template after it is selected |-- VideoModulePickFragment: template selection screen, which is launched after a template is selected and the button for using it is tapped |-- VideoModuleEditFragment: template editing screen |-- VideoModuleReplaceFragment: template replacement screen |-- Export-related functions: |--VideoExportActivity: main screen for export |--ExportFragment: parameter configuration before export, export progress, and export failure |--ExportSuccessFragment: export success ```
1
fedepaol/RxRestSample
Sample project to show how to interact with a rest backend while caching the results inside a sqllite storage
null
# RxRestSample Sample project to show how to interact with a rest backend while caching the results inside a sqllite storage
1
amiya-pattnaik/selenium-cucumber-java
This repository contains a collection of sample selenium-cucumber-java projects and libraries that demonstrate how to use the tool and develop automation script using the Cucumber (v 3.0.0) BDD framework with Java as programming language.
null
## Selenium-Cucumber-Java This repository contains a collection of sample projects and libraries that demonstrate how to use `selenium-cucumber-java`, a BDD (Behavior-Driven Development) framework with Cucumber (v 3.0.0) and Java. The projects showcase automation script development and utilize various reporters such as Allure, HTML, and JSON. Additionally, it offers the ability to capture screenshots for tests and generate error shots for failed test cases. ### Installation & Prerequisites 1. JDK 1.8+ (Ensure that the Java class path is properly set) 2. Maven (Ensure that the .m2 class path is properly set) 3. Eclipse IDE 4. Required Eclipse Plugins: - Maven - Cucumber 5. Browser driver (Ensure that you have the appropriate browser driver for your desired browser and that the class path is correctly configured) ## Framework Setup To set up the framework, you can either fork or clone the repository from [here](https://github.com/amiya-pattnaik/selenium-cucumber-java), or download the ZIP file and set it up in your local workspace. ## Running Sample Tests Access the CLI of your operating system (e.g., iTerm for macOS or PowerShell for Windows) and navigate to the project directory. Then, run the following command to execute the features: `mvn clean test`. By default, this command will invoke the Firefox browser and execute the tests. - To run features on a specific browser, use the command: `mvn test "-Dbrowser=browser_name"`. Replace `browser_name` with one of the following options: Firefox, Chrome, Safari, etc. Ensure that the browser's driver files are present and specified in the system variables. // Need to find out if Internet Explorer is supported or this should be updated to Edge, then update details around IE to Edge Please note that browser drivers are not included as part of this framework. The reason for this is that the version of Selenium browser drivers varies based on the browser version you are using, as well as the Selenium server version. - To run a specific feature file among multiple feature files, use the command: `mvn test -Dcucumber.options="classpath:features/my_first.feature"`. ## Reporters Once you have run your tests, you can generate various types of reports. This `selenium-cucumber-java` framework utilizes different test reporters to communicate pass/failure information. ## Reporting ### Allure Report To generate an Allure report, you can use one of the following commands: - `mvn allure:serve`: This command generates the report in the temp folder and opens a web server with the results in your default browser. A typical Allure report will look like this: ![Allure Report](https://github.com/amiya-pattnaik/selenium-cucumber-java/blob/master/src/main/resources/demo/readme-img.png) - `mvn allure:report`: This command generates the report in the `target/site/allure-maven/index.html` directory, allowing you to view it locally. ### HTML Report To generate an HTML report, use the following command: `mvn test -Dcucumber.options="--plugin html:target/result.html"`. This command generates an HTML report, and you can find it at `target/result.html`. ### JSON Report To generate a JSON report, use the following command: `mvn test -Dcucumber.options="--plugin json:target/result.json"`. This command generates a JSON report, and you can find it at `target/result.json`. ### Extent Spark Reports The framework utilizes the [Spark Reports Framework](http://www.extentreports.com/docs/versions/4/java/spark-reporter.html) to generate HTML test reports. Here is an example of a report generated by the Extent Reports open-source library: ![Extent Spark Report](https://github.com/amiya-pattnaik/selenium-cucumber-java/blob/master/src/main/resources/demo/demo.png) ## BDD Automation with Cucumber-Java and Page Objects In this repository, we encourage the use of Behavior-Driven Development (BDD) with Cucumber and Java to develop automation scripts. We provide predefined Step Definitions packaged under `/steps/Commonsteps.java` to help you accelerate your automation development. These Step Definitions support commonly used helper methods and can be customized according to your needs. Tests are written in the Cucumber framework using the Gherkin syntax. If you're new to Gherkin and Cucumber, you can find more information at [cucumber.io/docs/reference](https://cucumber.io/docs/reference). A typical test will have a structure similar to this: ```gherkin Feature: Performing a Google Search As a user on the Google search page I want to search for Selenium-Webdriver Because I want to learn more about it Background: Given I am on the search page Scenario: Performing a search operation When I enter "Selenium Webdriver" into the search box And I click the search button Then I should see a list of search results Scenario Outline: Performing a search operation with test data from a data table When I enter <searchItem> into the search box And I click the search button Then I should see a list of search results Examples: | searchItem | | "Selenium Webdriver" | ``` ## The Page Object Design Pattern To better organize your test code and make it more maintainable, we recommend using the Page Object Design Pattern. With this pattern, the UI elements of your web application are modeled as objects within the test code. This approach reduces code duplication and allows easy updates if the UI changes. Writing and maintaining test automation can be challenging, especially when it comes to keeping selectors (classes, IDs, or XPath, etc.) up to date with the latest code changes. The Page Object pattern provides a solution by centralizing these selectors in separate <pagename>.java files, where you can manage them along with the associated methods. By using the Page Object pattern, your test files will only call the test methods, while the selectors and reusable methods reside in the corresponding Page Objects. This approach helps maintain a separation of concerns and ensures that when a test fails, it fails on an individual step. If a selector becomes invalid, updating it in the Page Object file can fix multiple failing tests that rely on the same selector. Implementing the Page Object pattern promotes maintainable and scalable test automation code, making it easier to adapt to UI changes and keep your code DRY (Don't Repeat Yourself). ## Contribution We welcome and encourage contributions from the community to make this project even better! If you have ideas, bug fixes, or new features to contribute, follow the steps below: 1. Fork the project repository to your own GitHub account. 2. Create a new branch for your changes and switch to it. 3. Make the necessary changes, additions, or bug fixes in your branch. 4. Write clear and concise commit messages to explain the purpose of each change. 5. If your contribution introduces new functionality, consider adding tests to ensure its robustness. 6. Once your changes are ready, submit a pull request (PR) to the original repository. 7. In the PR description, provide a detailed explanation of the changes you made, including any relevant context or background information. 8. The project maintainers will review your PR, provide feedback, and collaborate with you to refine the changes if needed. 9. Once approved, your contribution will be merged into the main project. 10. Celebrate your successful contribution! 🎉 We encourage respectful and constructive interactions among contributors. Your time and effort in improving this project are highly valued, and we are excited to see your contributions. Together, let's create something amazing! ### Licensing [MIT](https://github.com/amiya-pattnaik/selenium-cucumber-java/MIT-LICENSE.txt)
1
HMS-Core/hms-3d-modeling-demo
HUAWEI 3D Modeling Kit project contains a sample app. Guided by this demo, you will be able to implement full 3D Modeling Kit capabilities, including 3D object reconstruction and material generation.
3d generation hms huawei material modeling reconstruction
# HMS Core 3D Modeling Kit Sample Code [![License](https://img.shields.io/badge/Docs-hmsguides-brightgreen)](https://developer.huawei.com/consumer/en/doc/development/graphics-Guides/introduction-0000001143077297) English | [中文](README_ZH.md) ## Introduction This project provides a demo app built on 3D Modeling Kit. The project directory is as follows: |-- 3DModeling-Sample // Sample code for 3D Modeling Kit. ## Precautions The project (**hms-3dmodeling-demo**) contains a demo app. After downloading and running the code, you can experience the complete capabilities of 3D Modeling Kit. ## Technical Support You can visit the [Reddit community](https://www.reddit.com/r/HuaweiDevelopers/) to obtain the latest information about HMS Core and communicate with other developers. If you have any questions about the sample code, try the following: - Visit [Stack Overflow](https://stackoverflow.com/questions/tagged/huawei-mobile-services?tab=Votes), submit your questions, and tag them with `huawei-mobile-services`. Huawei experts will answer your questions. - Visit the HMS Core section in the [HUAWEI Developer Forum](https://forums.developer.huawei.com/forumPortal/en/home?fid=0101187876626530001?ha_source=hms1) and communicate with other developers. If you encounter any issues when using the sample code, submit your [issues](https://github.com/HMS-Core/hms-3d-modeling-demo/issues) or submit a [pull request](https://github.com/HMS-Core/hms-3d-modeling-demo/pulls).
1
odrotbohm/tactical-ddd-workshop
Sample code for my Tactical DDD with Java workshop
ddd jmolecules moduliths spring-boot
null
1
dnault/libresample4j
Java port of libresample, a real-time library for sampling rate conversion. Original C version by Dominic Mazzoni based on code by Julius Smith.
null
[![Build Status](https://travis-ci.org/dnault/libresample4j.svg?branch=main)](https://travis-ci.org/dnault/libresample4j) [![LGPL 2.1](https://img.shields.io/badge/license-LGPL%202.1-blue.svg)](http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html#SEC1) ![Java 1.5+](https://img.shields.io/badge/java-1.7+-lightgray.svg) # libresample4j Java port of Dominic Mazzoni's libresample 0.1.3, which is in turn based on Julius Smith's Resample 1.7 library. There's no documentation for the Java port, but for the most part it's just like the C version which you can read about here: https://ccrma.stanford.edu/~jos/resample/Free_Resampling_Software.html Also take a look at the C version's README which is bundled in the `libresample-0.1.3.tgz` archive.
0
kidinov/Just-Weather
Real world sample of code architecture MVP with RxJava2, Dagger2, Retrofit2 and Realm. Offline first approach.
null
![alt tag](https://github.com/kidinov/Just-Weather/blob/master/screenshots/promo.png) # Just Weather Easy in use app for get track of current weather in different cities arround the world. <img src="https://github.com/kidinov/Just-Weather/blob/master/screenshots/1.png" width="256"> <img src="https://github.com/kidinov/Just-Weather/blob/master/screenshots/2.png" width="256"> <img src="https://github.com/kidinov/Just-Weather/blob/master/screenshots/3.png" width="256"> Find out it on [Google Play](https://play.google.com/store/apps/details?id=org.kidinov.just_weather) Code archetecture follow MVP with RxJava2, Dagger2, Retrofit2 and Realm. Offline first approach. To control code quality: ``` ./gradlew test - To run JVM tests ./gradlew connectedAndroidTest - To run instrumentation tests. (don't forgot to disable animations in order to make it possible to run UI tests) ./gradlew pmd - To check code with pwd ./gradlew findbugs - To check code with findbugs ./gradlew checkstyle - To check code with checkstyle ./gradlew check - To run everything above + android lint ``` # Usage restriction This sources mostly for educational porpuse. You can use any part of that source as you wish, but you not able to build this app (cutting something) and publish as your application. Thanks.
1
zqljintu/Memory-capsule
This is a sample memorandum,but I named it Memory-capsule.//这只是一个简单的备忘录程序,只是我把它命名为记忆胶囊。
null
# Memory-capsule This is a sample memorandum,but I named it Memory-capsule.//这只是一个简单的备忘录程序,只是我把它命名为记忆胶囊。 [下载预览](https://fir.im/memorycapsule) 项目简介(适配Android5.0--8.0。) ==== 这只是一个简单的备忘录程序,给她取了一个名字叫“记忆胶囊”,来记录我的一些想法,回忆,行程等等。同时通过写个App,开阔了眼界,丰富了知识,很高兴能把它开源出来,为开源世界做出自己的一点小贡献。 (新的分支 dev_new //主分支没有改动) 1, 重构了部分代码,界面没有改动。 2, 项目采用组件化, 利用阿里路由解耦。 3, 采用新的MVP模式,更加方便。 ————2020/01/06 1,解决了主界面的小bug,完善了部分程序。 ————2019/05/25 1,重构了EditActivity/(AddActivity),简化了代码设计,更加高效更加便捷。 2,添加了滑动返回模块。 3,优化了界面,解决了卡顿问题。 4,去除了拍摄模块。 ————2018/12/17 解决了一些问题: 1,为没有备忘文件下的界面添加了背景图片。 2,解决了从列表文件删除后,没有及时再主界面显示更新这个问题。 更新版本说明(v1.10) 1,添加文本分享模块,调用手机系统分享模块实现,能分享到多个软件。(注:微信朋友圈,QQ空间不能被分享) 2,添加动画属性,对详情界面添加了两个动画效果,在以后的更新中将添加更多的动画效果。 3,更改了被多人吐槽的图标,扁平化效果,借鉴了网上的一些素材。 更新版本说明(v1.03) 1,数据分析模块添加了一个新的项目,完成了饼状图和柱状图的双设计! 2,重新设计了密码输入界面,使密码输入更加安全,并且统一了界面。 3,完成了对删除之后界面跳转的优化,让界面更加顺滑。 4,修复了一些测试中的小BUG。(并没有杀程序员祭天!) 更新版本说明(v1.02) 1,添加了数据分析模块,用户可以查看创建类型数据分布。 2,完成上一版本中主界面添加入私密文件夹功能。 3,优化了相应的界面设计,使界面整体风格更加统一协调。 更新版本说明(V1.01) 1,添加了密码模块,用户可以自由添加个人备忘录于密码文件夹中。 2,密码文件夹采用了另一个数据库文件,与普通备忘录文件隔离开,加强了安全可靠性。 3,编辑界面添加了一个switch button,用来控制备忘文件的类型。 4,主界面添加入密码中在下一版本中实现。 5,秘密文件夹中备忘文件不能被编辑,只能查看与删除。 此版本为第一个版本(V1.00),其中有些功能并未完善,具体如下: 1,密码模块已经完善,有了创建密码和密保,修改密码和密保,忘记密码等功能,但是"我的秘密"这个模块并没有添加进去,还处于空白区。 2,有些菜单界面中的隐藏功能并未实现,在下一版本中更新。 3,修改第一个Item内容时,第一个Item显示Bug,需要退出重启后才能显示成功。 4,通过拍摄创建时,主界面中Item图片无法显示。 5,列表中的下拉菜单背景色无法随着toolbar颜色改变。 相应界面设计如下: ![](https://github.com/zqljintu/Memory-capsule/blob/master/ReadMe_Image/0001.png) 其中使用了许多开源库: 图片加载库:Glide 数据库:GreenDao 下拉菜单:nice-spinner 输入框:materialedittext 图片显示,拍摄库:imgsel 沉浸式状态栏库:statusbarutil floatingActionButton开源库:'com.getbase:floatingactionbutton:1.10.1' floatingbutton库:compile 'com.github.joaquimley:faboptions:1.2.0' 标签库:'me.gujun.android.taggroup:library:1.4@aar' switchbutton库:compile 'com.kyleduo.switchbutton:library:2.0.0' chart图表开源库:compile 'com.github.lecho:hellocharts-library:1.5.8@aar' 等。 动画开源库:implementation 'com.android.support:support-compat:26.1.0' implementation 'com.daimajia.easing:library:2.0@aar' implementation 'com.daimajia.androidanimations:library:2.3@aar' 在此,感谢各位大神的轮子。 程序采用了mvp架构的设计,新手所写,还有诸多不足之处,如果喜欢,欢迎给个Star,若有什么问题,欢迎issue。 联系请关注知乎账号:番茄炒蛋不要蛋
1
Rapter1990/bookdelivery
Case Study - Sample Book Delivery App (Spring Boot, Spring Security , Mysql, JUnit, Integration Test, Docker, Test Container, AOP, CI/CD, Prometheus, Grafana, Github Actions)
aop ci-cd continuous-deployment continuous-integration docker docker-compose github-actions grafana integration-test java junit monolith mysql pessimistic-locking prometheus spring-boot spring-mvc spring-security swagger test-container
# Case Study - Book Delivery <p align="center"> <img src="screenshots/book_delivey_main_image.png" alt="Main Information" width="700" height="500"> </p> ### 📖 Information <ul style="list-style-type:disc"> <li><b>Book Delivery</b> is a kind of Spring Boot with covering important and useful features</li> <li>Here is the explanation of the example <ul>There are 2 roles named <b>Admin</b> and <b>Customer</b></ul> <ul><b>Admin</b> handles with creating book, updating stock of book and updating book information, getting all books and book by id, showing statistic by customer's order and all orders while <b>Customer</b> tackle with creating order, showing own orders, getting all books and book by id except for their own authentication process covering the process of register, login, refresh token and logout</ul> </li> </ul> ### Explore Rest APIs <table style="width:100%"> <tr> <th>Method</th> <th>Url</th> <th>Description</th> <th>Request Body</th> <th>Header</th> <th>Valid Path Variable</th> <th>No Path Variable</th> </tr> <tr> <td>POST</td> <td>/api/v1/auth/register</td> <td>Register of both Admin and Customer</td> <td>SignupRequest</td> <td></td> <td></td> <td></td> <tr> <tr> <td>POST</td> <td>/api/v1/auth/login</td> <td>Login of both Admin and Customer</td> <td>LoginRequest</td> <td></td> <td></td> <td></td> <tr> <tr> <td>POST</td> <td>/api/v1/auth/refreshtoken</td> <td>Refresh Token of both Admin and Customer</td> <td>TokenRefreshRequest</td> <td></td> <td></td> <td></td> <tr> <tr> <td>POST</td> <td>/api/v1/auth/logout</td> <td>Logout of both Admin and Customer</td> <td></td> <td>token</td> <td></td> <td></td> <tr> <tr> <td>POST</td> <td>/api/v1/books</td> <td>Create Book from Admin</td> <td>BookCreateRequest</td> <td></td> <td></td> <td></td> <tr> <tr> <td>PUT</td> <td>/api/v1/books/stock-amount/{bookId}</td> <td>Update Stock of Book from Admin</td> <td>BookUpdateStockRequest</td> <td></td> <td>bookId</td> <td></td> <tr> <tr> <td>PUT</td> <td>/api/v1/books/{bookId}</td> <td>Update Book from Admin</td> <td>BookUpdateRequest</td> <td></td> <td>bookId</td> <td></td> <tr> <tr> <td>PUT</td> <td>/api/v1/books/{bookId}</td> <td>Update Book from Admin</td> <td>BookUpdateRequest</td> <td></td> <td>bookId</td> <td></td> <tr> <tr> <td>GET</td> <td>/api/v1/books/{bookId}</td> <td>Get Book by Id from Admin and Customer</td> <td></td> <td></td> <td>bookId</td> <td></td> <tr> <tr> <td>GET</td> <td>/api/v1/books/{bookId}</td> <td>Get Books from Admin and Customer</td> <td>PaginationRequest</td> <td></td> <td></td> <td></td> <tr> <tr> <td>POST</td> <td>/api/v1/customers</td> <td>Create Customer from Admin</td> <td>CustomerCreateRequest</td> <td></td> <td></td> <td></td> <tr> <tr> <td>POST</td> <td>/api/v1/orders</td> <td>Create Order from Customer</td> <td>CreateOrderRequest</td> <td></td> <td></td> <td></td> <tr> <tr> <td>GET</td> <td>/api/v1/orders/{orderId}</td> <td>Get Order by Id from Admin and Customer</td> <td></td> <td></td> <td>orderId</td> <td></td> <tr> <tr> <td>POST</td> <td>/api/v1/orders/{orderId}</td> <td>Get Orders by Customer Id from Admin and Customer</td> <td>PaginationRequest</td> <td></td> <td>customerId</td> <td></td> <tr> <tr> <td>POST</td> <td>/api/v1/orders/between-dates</td> <td>Get Orders by between dates from Admin and Customer</td> <td>PaginationRequest</td> <td></td> <td>customerId</td> <td></td> <tr> <tr> <td>POST</td> <td>/api/v1/orders/between-dates</td> <td>Get Orders by between dates from Admin and Customer</td> <td>PaginationRequest</td> <td></td> <td></td> <td></td> <tr> <tr> <td>GET</td> <td>/api/v1/statistics/{customerId}</td> <td>Get Order Statistics By CustomerId from Admin and Customer</td> <td>PaginationRequest</td> <td></td> <td>customerId</td> <td></td> <tr> <tr> <td>GET</td> <td>/api/v1/statistics</td> <td>Get Order Statistics from Admin</td> <td>PaginationRequest</td> <td></td> <td></td> <td></td> <tr> </table> ### Technologies --- - Java 17 - Spring Boot 3.0 - Restful API - Lombok - Maven - Junit5 - Mockito - Integration Tests - Docker - Docker Compose - CI/CD (Github Actions) - Prometheus and Grafana - Postman - Actuator - Swagger 3 ### How to test Pessimistic Lock using ApacheHttpServer? We implemented a pessimistic lock mechanism to avoid scenarios where multiple users attempt to order books simultaneously, ensuring that their actions are synchronized properly to prevent data conflicts. So with a pessimstic lock, if multiple users attempt to order one last stock of a book, only one of them will be able to order. ### Install Apache 2 on Linux & Test Installation ``` sudo apt-get install apache2 ``` To test, you need to make requests to the create order endpoint. So you're going to need a valid payload json which is shown below. (Do not forget to change the bookId with a valid one) ```json { "orderDetailSet": [ { "bookId": "3a0e7efc-1e32-404c-9a70-d9fb63262c6e", "amount": 1 } ] } ``` Now we can test the create order endpoint, and see if the locking mechanism works - <b>n</b> represents the number of requests to be made to the URL specified - <b>c</b> represents the number of requests to send at a time. Here, it's set to 2, so ApacheBench will send 2 requests concurrently. Here is the example shown below for testing ``` ab -n 100 -c 2 -H "Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJyb2xlcyI6WyJST0xFX0NVU1RPTUVSIl0sInVzZXJGdWxsTmFtZSI6ImN1c3RvbWVyX2Z1bGxuYW1lIiwiaWQiOjIsImVtYWlsIjoiY3VzdG9tZXJAYm9va2RlbGl2ZXJ5LmNvbSIsInVzZXJuYW1lIjoiY3VzdG9tZXJfMSIsInN1YiI6ImN1c3RvbWVyXzEiLCJpYXQiOjE2OTQ4ODkyNTMsImV4cCI6MTY5NDg4OTg1M30.UokFWxgZnSnYZsbAlwbfhQj1F54QrEOU5_5KzHyRmtY" -T "application/json" -p post_data.json http://localhost:1221/api/v1/orders ``` ### Swagger ``` http://localhost:1221/swagger-ui/index.html ``` ### Prerequisites #### Define Variable in .env file ``` DATABASE_USERNAME={DATABASE_USERNAME} DATABASE_PASSWORD={DATABASE_PASSWORD} ``` --- - Maven or Docker --- ### Docker Run The application can be built and run by the `Docker` engine. The `Dockerfile` has multistage build, so you do not need to build and run separately. Please follow directions shown below in order to build and run the application with Docker Compose file; ```sh $ cd bookdelivery $ docker-compose up -d ``` If you change anything in the project and run it on Docker, you can also use this command shown below ```sh $ cd bookdelivery $ docker-compose up --build ``` --- ### Maven Run To build and run the application with `Maven`, please follow the directions shown below; ```sh $ cd bookdelivery $ mvn clean install $ mvn spring-boot:run ``` ### Screenshots <details> <summary>Click here to show the screenshots of project</summary> <p> Figure 1 </p> <img src ="screenshots/prometheues.PNG"> <p> Figure 2 </p> <img src ="screenshots/prometheues_1.PNG"> <p> Figure 3 </p> <img src ="screenshots/grafana_1.PNG"> <p> Figure 4 </p> <img src ="screenshots/grafana_2.PNG"> <p> Figure 5 </p> <img src ="screenshots/grafana_3.PNG"> <p> Figure 6 </p> <img src ="screenshots/grafana_4.PNG"> <p> Figure 7 </p> <img src ="screenshots/grafana_5.PNG"> <p> Figure 8 </p> <img src ="screenshots/grafana_6.PNG"> <p> Figure 9 </p> <img src ="screenshots/grafana_7.PNG"> <p> Figure 10 </p> <img src ="screenshots/grafana_8.PNG"> <p> Figure 11 </p> <img src ="screenshots/grafana_9.PNG"> </details> ### Contributors - [Sercan Noyan Germiyanoğlu](https://github.com/Rapter1990) - [Ahmet Aksünger](https://github.com/AhmetAksunger) - [Muhammet Oğuzhan Aydoğdu](https://github.com/moaydogdu)
1
chenzj-king/GreenDaoSample
通过task来生成greendao所需的bean&dao.增删改查sample.数据库升级工具类.一应俱全
null
# GreenDaoSample 使用新版的Greendao来进行创建Entity.运行既生成DaoMaster/DaoSession/xxDao等class.通过gradle plugin可以控制生成的db版本和生成代码的目录. ## 功能介绍 ## ### 1.通过make project的方式来生成bean&dao ### - 引入依赖 在项目的根目录下的build.gradle中添加greenDao gradle plugin的依赖 dependencies { //greendao plugin classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' } - 编写Entity @Entity(active = true, nameInDb = "User") public class User { @Id private Long id; private String name; private String sex; private String phone; private Long time; } - ctrl+F9 make project一下 - 执行结果如图.代表成功.会自动创建到相关的各种方法(**图略**) ### 2.增删改查功能 ### - 新增 //insert to database User user = new User(); user.setName(nameStr); user.setPhone(phoneNumStr); user.setSex(sexStr); user.setTime(System.currentTimeMillis()); mUserDao.insert(user); - 删除 //del the data User user = mAdapter.getItemData(position);//我这边的逻辑是从adapter取出来.实际根据项目情况来进行getItemData mUserDao.delete(user); - 修改 //update message User mNewUser = user; mNewUser.setName(nameStr); mNewUser.setPhone(phoneNumStr); mNewUser.setSex(sexStr); mNewUser.setTime(System.currentTimeMillis()); mUserDao.insertOrReplace(mNewUser); - 查询 List<WhereCondition> whereConditionList = new ArrayList<>(); //模糊匹配姓名 whereConditionList.add(Properties.Name.like("%" + getContent(mOperationUser.getName()) + "%")); //模糊匹配电话号码 whereConditionList.add(Properties.Phone.like("%" + getContent(mOperationUser.getPhone()) + "%")); //精确匹配男/女 if (!TextUtils.isEmpty(mOperationUser.getSex())) { whereConditionList.add(UserDao.Properties.Sex.eq(getContent(mOperationUser.getSex()))); } List<User> list = mUserDao.queryBuilder().where(Properties.Time.isNotNull(), whereConditionList.toArray(new WhereCondition[]{})).list(); ### 3.数据库升级工具 ### - 获取DaoSession.会在这个过程中进行数据库升级 public synchronized DaoSession getDaoSession() { if (mDaoSession == null) { initDaoSession(); } return mDaoSession; } private void initDaoSession() { // 相当于得到数据库帮助对象,用于便捷获取db // 这里会自动执行upgrade的逻辑.backup all table→del all table→create all new table→restore data UpgradeHelper helper = new UpgradeHelper(this, "greendao.db", null); // 得到可写的数据库操作对象 SQLiteDatabase db = helper.getWritableDatabase(); // 获得Master实例,相当于给database包装工具 DaoMaster daoMaster = new DaoMaster(db); // 获取类似于缓存管理器,提供各表的DAO类 mDaoSession = daoMaster.newSession(); } - 升级工具类 public class UpgradeHelper extends DaoMaster.DevOpenHelper { public static String TAG = UpgradeHelper.class.getSimpleName(); public UpgradeHelper(Context context, String name, SQLiteDatabase.CursorFactory factory) { super(context, name, factory); } /** * Here is where the calls to upgrade are executed */ @Override public void onUpgrade(Database db, int oldVersion, int newVersion) { /* i represent the version where the user is now and the class named with this number implies that is upgrading from i to i++ schema */ for (int i = oldVersion; i < newVersion; i++) { Log.i("greenDAO", "Upgrading schema from version " + oldVersion + " to " + newVersion + " by migrating all tables data"); // TODO: 2016/3/24 注意把所新版本的表的xxDao都添加到这里 MigrationHelper.getInstance().migrate(db, UserDao.class); } } } ## TODO ## - 完成自定义数据类型的sample - 编写所有查询类型的sample - 一对多/多对多的sample ## Thanks For Open Source ## 1. [GreenDao](https://github.com/greenrobot/greenDAO) 1. [EventBus](https://github.com/greenrobot/EventBus) 1. [fancybuttons](https://github.com/medyo/Fancybuttons) 1. [logger](https://github.com/orhanobut/logger) 2. [FlycoTabLayout](https://github.com/H07000223/FlycoTabLayout) # 关于我 # - **QQ:** 364972027 - **Weibo:** [http://weibo.com/u/1829515680](http://weibo.com/u/1829515680) - **Email:** admin@chenzhongjin.cn - **Github:** [chenzj-king](https://github.com/chenzj-king) - **Blog:** [chenzhongjin.cn](https://www.chenzhongjin.cn)
0
aws-samples/amazon-kinesis-analytics-taxi-consumer
Sample Apache Flink application that can be deployed to Kinesis Analytics for Java. It reads taxi events from a Kinesis data stream, processes and aggregates them, and ingests the result to an Amazon Elasticsearch Service cluster for visualization with Kibana.
null
## Amazon Kinesis Analytics Taxi Consumer > #### 🚨 August 30, 2023: Amazon Kinesis Data Analytics has been renamed to [Amazon Managed Service for Apache Flink](https://aws.amazon.com/managed-service-apache-flink). -------- ### ⛔️ This sample application is obsolete. Please refer to the [new repository](https://github.com/aws-samples/amazon-managed-service-for-apache-flink-taxi-consumer) ------- Sample Apache Flink application that can be deployed to Kinesis Analytics for Java. It reads taxi events from a Kinesis data stream, processes and aggregates them, and ingests the result to an Amazon Elasticsearch Service cluster for visualization with Kibana. To see the sample application in action, simply execute the following CloudFormation template in your own AWS account. The template first builds the Flink application that is analyzing the incoming taxi trips, including the Flink Kinesis Connector that is required to read data from a Kinesis data stream, and then creates the infrastructure and submits the Flink application to KDA for Java. [![Launch CloudFormation Stack](https://s3.amazonaws.com/cloudformation-examples/cloudformation-launch-stack.png)](https://console.aws.amazon.com/cloudformation/home#/stacks/new?stackName=kinesis-analytics-taxi-consumer&templateURL=https://s3.amazonaws.com/aws-bigdata-blog/artifacts/kinesis-analytics-taxi-consumer/cfn-templates/kinesis-analytics-taxi-consumer.yml) The entire process of building the application and creating the infrastructure takes about 15 minutes. Once the creation of the CloudFormation stack completes, the Flink application has been deployed to KDA for Java as a KDA for Java application and waits for events in the data stream to arrive. Checkpointing has been enabled so that the application can seamlessly recover from failures of the underlying infrastructure while KDA for Java will manage the checkpoints on your behalf. In addition, autoscaling has been configured so that KDA for Java automatically allocates or removes resources and scales the application, ie, adapts its parallelism, in response to changes of the incoming traffic. To populate the Kinesis data stream, we use a Java application that replays a public data set of historic taxi trips made in New York City into the data stream. The Java application has already been downloaded to an EC2 instance that has been provisioned by CloudFormation, you just need to connect to the Instance and execute the jar file to start ingesting events into the stream. Note that all of the following commands, including their correct parameters, can be obtained from the output section of the CloudFormation template that has been executed previously. ``` $ ssh ec2-user@«Replay instance DNS name» $ java -jar amazon-kinesis-replay-*.jar -streamName «Kinesis data stream name» -streamRegion «AWS region» -speedup 3600 ``` The speedup parameter determines how much faster the data is ingested into the Kinesis data stream relative to the actual occurrence of the historic events. With the given parameters the Java application ingests an hour of historic data within one second, which results in a throughput of roughly 13k events and 6 MB of data per second and hence completely saturates the Kinesis data stream—more on this later. You can then go ahead and inspect the derived data through the Kibana dashboard that has been created, or you can create your own visualizations to explore the data in Kibana. ``` https://«OpenSearch endpoint»/_plugin/kibana/app/kibana#/dashboard/nyc-tlc-dashboard ``` The prepared Kibana dashboard contains a heatmap and a line graph. The heatmap visualizes locations where taxis are currently requested and it shows that the highest demand for taxis is Manhattan. Moreover, the airports JFK and LaGuardia are also spots on the map where substantially more rides are requested compared to their direct neighborhoods. The line graph visualizes the average trip duration to these two airports and you can see how it is steadily increasing throughout the day until it abruptly drops in the evening. ![Kibana Dashboard Screen Shot](misc/kibana-dashboard-screenshot.png?raw=true) Note that the Elasticsearch cluster is configured to accept connections from the IP address range specified as a parameter of the CloudFormation template. Please note that for production workloads it’s much more desirable to further tighten the security of your Elasticsearch domain, for instance, by using Amazon Cognito for Kibana access control. ## License This library is licensed under the Apache 2.0 License.
1
ddossot/mule-in-action
Source code snippets and sample application for the First Edition of the book Mule in Action, authored by David Dossot and John D'Emic, and published by Manning Publications.
null
Mule In Action ============== Source code snippets and sample application for the book Mule in Action, authored by David Dossot and John D'Emic, and published by Manning Publications. [Book Homepage](http://www.manning.com/dossot/) Required configuration: - JDK 5 or better - Maven 3 - Mule 3.2.x - Build setup: MAVEN_OPTS="-Xms128m -Xmx512m -XX:MaxPermSize=256m"
1
fedepaol/TestingRxJava
Sample project to demonstrate how to unit test observables and subscriptions
null
# TestingRxJava RxJava is asynchronous by nature, so unit testing it might seem a daunting at first, especially if you use that asynchronous interaction to test stuff. Luckily, RxJava (and RxAndroid) come with a couple of tools that will make our life a lot easier. This sample projects demonstrates how to: * test an observable (or a transformation of one or more observables) by using [TestSubscriber](http://reactivex.io/RxJava/javadoc/rx/observers/TestSubscriber.html) * test how your app react to a subscription by mocking the real observable and overriding the default rxjava / rxandroid schedulers More details can be found in [this post from my blog](http://fedepaol.github.io/blog/2015/09/13/testing-rxjava-observables-subscriptions/)
1
aws-samples/amazon-kinesis-analytics-beam-taxi-consumer
Sample Apache Beam pipeline that can be deployed to Amazon Managed Service for Apache Flink. It reads taxi events from a Kinesis data stream, processes and aggregates them, and ingests the result to Amazon CloudWatch for visualization.
null
## Amazon Managed Service for Apache Flink - Beam Taxi Consumer > Amazon Managed Service for Apache Flink was formerly known as Amazon Kinesis Data Analytics Sample Apache Beam pipeline that can be deployed to Amazon Managed Service for Apache Flink. It reads taxi events from a Kinesis data stream, processes and aggregates them, and ingests the result to Amazon CloudWatch for visualization. The Beam pipeline can also run in batch mode for backfilling, reading a finite dataset from S3. Application configuration * Group ID: `BeamApplicationProperties` * `InputStreamName` name of the input Kinesis Stream, ignored if `Source` = `s3` * `OutputBoroughs`, `true`|`false`, counts trips per borough * `Source` either `kinesis`, for stream processing mode, or `s3`, for batch mode * `InputS3Pattern` pattern to read backfilling input in batch mode, `s3://<bucket-name>/<path>/*/*/*/*/*`, ignored if `Source` = `kinesis` ## License Summary This sample code is made available under the MIT-0 license. See the LICENSE file.
1
HMS-Core/hms-audio-editor-demo
HUAWEI Audio Kit provides a wide range of audio editing capabilities, including auido import/export/editing/extracting and format conversion. This sample code describes how to integrate the Audio Editor Kit SDK.
audio audio-editor hms huawei java
# Audio Editor Kit Sample English | [中文](README_ZH.md) ## Table of Contents * [Introduction](#introduction) * [Project directory structure](#project-directory-structure) * [Running Procedure](#running-procedure) * [Supported environment](#supported-environment) * [License](#license) ## Introduction HUAWEI Audio Editor Kit provides a wide range of audio editing capabilities, including audio import/expert/editing/extracting and format conversion. You can easily integrate them into your app as needed through the kit's open, excellent, yet easy-to-use APIs. This sample code is used to describe how to use the Audio Editor Kit SDK. - Imports audio files in batches, and generates and previews the audio wave for a single audio or multiple audios. - Supports basic audio editing operations such as changing the volume, adjusting the tempo or pitch, and copying and deleting audio. - Adds one or more special effects to audio, including the music style, sound field, equalizer, fade-in/out, voice changer, sound effect, scene effect, and spatial audio - Supports audio recording and importing. - Separates audio sources for an audio file. - Reduces the quasi-steady-state noises and sudden loud noises in audio collected from two microphones, and repairs and enhances the human voice to improve the audio quality. - Extracts audio from video files in formats like MP4. - Converts audio format to MP3, WAV, or FLAC. - Supports AI dubbing: converts text into voice of different timbres. - Supports song synthesis: Generates beautiful songs based on the input lyrics (only in China). ## Project directory structure ``` |-- apk |-- app |-- com.huawei.hms.audioeditor.demo |-- MainActivity // Audio Editor UI SDK entry, format conversion entry, and audio extraction entry. |-- AudioFormatActivity // Demo Format Conversion. |-- AudioFilePickerActivity // Select the audio file and list for the demo. |-- FileApiActivity // Interfaces of Demo Function Files. |-- StreamApiActivity // Streaming Interfaces of Demo Functions. |-- AudioBaseActivity // Integration of basic demo functions. |-- AiDubbingAudioActivity // AI dubbing integration. |-- SongSynthesisActivity // Song synthesis function integration. |-- base_audioeditor |-- com.huawei.hms.audioeditor.demo |-- AudioBaseActivity // Integration of basic demo functions. |-- aidubbing_audioeditor |-- com.huawei.hms.audioeditor.demo |-- AiDubbingAudioActivity // AI dubbing functions. ``` ## Running Procedure - Clone the code base to the local host. - If you haven't already registered as a developer, register and create an app on [AppGalleryConnect](https://developer.huawei.com/consumer/cn/service/josp/agc/index.html). - Replacing the sample-agconnect-services.json File in the Project - Compile and run on an Android device. ## Supported Environment Android SDK 24 or later and JDK 1.8 or later are recommended. ## Question or issues If you want to evaluate more about HMS Core, [r/HMSCore on Reddit](https://www.reddit.com/r/HuaweiDevelopers/) is for you to keep up with latest news about HMS Core, and to exchange insights with other developers. If you have questions about how to use HMS samples, try the following options: - [Stack Overflow](https://stackoverflow.com/questions/tagged/huawei-mobile-services?tab=Votes) is the best place for any programming questions. Be sure to tag your question with `huawei-mobile-services`. - [Huawei Developer Forum](https://forums.developer.huawei.com/forumPortal/en/home?fid=0101187876626530001) HMS Core Module is great for general questions, or seeking recommendations and opinions. If you run into a bug in our samples, please submit an [issue](https://github.com/HMS-Core/hms-audio-editor-demo/issues) to the Repository. Even better you can submit a [Pull Request](https://github.com/HMS-Core/hms-audio-editor-demo/pulls) with a fix. Note: The package name in this project cannot be used to apply for agconnect-services.json. You can use a customized package name to apply for agconnect-services.json. You only need to change applicationId in application-level build.gradle to the same package name as the applied agconnect-services.json to experience the Audio Editor Kit cloud-side service. ## License This sample code has obtained [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0).
1
xuminwlt/j360-boot-app-all
基于Spring boot 2.0+ 脚手架重构微服务系统,CI、DevOps、Redisson、Shiro、RocketMQ tx、Dubbo、Sentinel、Sharding-Sphere、Fescar、Skywalking、Apollo、SocketIO, 小程序服务端快速上手Sample, Netty Socket Game/PUSH Server
apollo dubbo fescar miniprogram netty redisson sharding-sphere skywalking socketio websocket weixin
# 使用spring-boot脚手架重写分布式业务 [![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html) [![Build Status](https://travis-ci.org/xuminwlt/j360-boot-app-all.svg?branch=master)](https://travis-ci.org/xuminwlt/j360-boot-app-all) ## 模块说明 - disboot-base: 工程二分库基础包, 设置该系统相关的定义参数及硬配置 - disboot-api: RPC模块之二分库 - disboot-common: RPC模块实现通用配置及代码 - disboot-biz-sjdbc: RPC模块(disboot-api)实现工程, 集成了Sharding-phere,RocketMQ等分布式框架及最佳实践用法 - disboot-web: API端,使用Dubbo RPC连接biz模块 - disboot-miniprogram: 小程序服务端快速上手指南,包含jwt授权鉴权, 微信小程序支付、小程序客服、小程序消息等内容 - disboot-websocket: 应用中使用netty连接实现分布式集群中的点对点,点对多,广播消息收发,业务功能集成实践(Web Game/PUSH) ## 快速上手 - 微信小程序服务端接口快速上手案例: <a href="./j360-disboot-miniprogram">j360-disboot-miniprogram</a> 使用一个简单的小程序后台快速上手案例包含以下内容: 1. 打包发布 maven打包成zip发布到linux,集成shell命令 start、restart、stop、console、dump等命令 2. 集成nginx代理web https服务,快速配置小程序 3. 集成无状态授权鉴权过程,客户端无需参与任何加解密过程、服务端自动实现会话身份识别 4. 集成zipkin链路性能分析日志, 快速定位接口性能数据 5. 集成小程序微信支付, 快速完成小程序支付过程和回调配置,(小程序不支持虚拟物品交易!) ## 功能点 ### DevOps流程: 1. CI配套 - 开发环境 - 单元测试 - 功能测试 - 集成测试 2. JVM配置 - env: 本地环境配置化 3. 多环境支持及参数配置 参考aws服务本地化配置方式, 多环境多个配置文件,多个module可分别制定外部配置文件,[推荐]使用外部地址配置文件,指定/etc/.myproject.yml - 需要支持的环境列表,基本上可以满足前期不上配置系统开发及上线需求 1. IDE单元测试 2. IDE运行 3. 独立环境运营 IDE环境maven配置: ``` <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <jvmArguments> -Xdebug -Dspring.config.location=file:../.././yml/application-local.yml,classpath:application.yml </jvmArguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Xdebug -Dspring.config.location=file:../.././yml/application-local.yml,file:../.././yml/application-sharding.yml,classpath:application.yml</argLine> </configuration> </plugin> </plugins> ``` 独立环境: ``` shell env中增加以下参数 java -jar xxxx.jar -Dspring.config.location=file:.././yml/application-local.yml,classpath:application.yml,classpath:application-sharding.yml ``` 4. VM监控 启动server.sh shell中开启JMX env中定义环境和额外的vm参数 5. Log支持 - 默认使用: slf4j+logback - 可配置log4j2进行异步日志收集,异步日志收集需要控制异步线程池的停止和启动过程参数, 同时异步收集注意线程池队列打满时的拒绝策略默认为当前线程执行会导致当前线程影响。 6. 启动集成 多环境、多配置支持:配置和源码分离可以通过vm参数进行多环境的配置支持 7. RPC集成 dubbo2.7 + boot start 8. Web集成 - j360-disboot-web http://localhost:8081/index.html#/login 9. Shiro集成 - shiro + jwt + boot2 (j360-disboot-miniprogram) 10. 分表分库读写分离 sharding-sphere v3.1 boot2 11. 全链路跟踪 Skywalking/Zipkin - j360-miniprogram - 示例小程序服务端使用zipkin v5.0+ 进行servlet和http client request两种埋点方式进行收集 12. 分布式事务 - Fescar - Saga - RocketMQ 13. RocketMQ 事务消息,异步可靠性消息事务实现最终一致性机制,在部分场景下实现资源最终一致性。 14. 限流 Sentinel 15. 分布式配置 Apollo/Nacos 16. 规则引擎: Drools 17. SocketIO with Netty - 基于SocketIO协议的Netty版本实现Websocket分布式集群案例 ## 链路跟踪 ### 本地Metrics: Kamon Metrics > [Kamon](http://kamon.io/documentation/get-started/) is used to track saga performance and reports trace data to both log and [StatsD](https://github.com/etsy/statsd/). The easiest way to visualize tracing reports is to use a [docker image](http://kamon.io/documentation/kamon-statsd/0.6.6/overview/) composed with StatsD, [Graphite](http://graphite.wikidot.com/), and [Grafana](http://grafana.org/) - 使用aspectj 运行 Kamon enabled. ``` java -javaagent:/path/to/aspectj-weaver.jar -Dkamon.modules.kamon-annotation.auto-start=yes -Dkamon.modules.kamon-log-reporter.auto-start=yes -Dkamon.modules.kamon-statsd.auto-start=yes -jar saga.jar ``` b. Tracing data reported to prometheus grafana + prometheus ### 全链路分析: Skywalking ## sharding-sphare ``` -Dspring.config.location=file:.././yml/application-local.yml,classpath:application.yml,classpath:application-sharding.yml ``` ## Sentinel 限流监控在首次拦截时初始化并生成数据,Dashboard需要才能同步到对应的数据 ``` Shell -Djava.net.preferIPv4Stack=true -Dcsp.sentinel.api.port=8731 -Dcsp.sentinel.dashboard.server=localhost:8080 -Dproject.name=dubbo-web-demo ``` ## java shell reset vm args in script/bin/env ``` SERVER_OPTS_MEMORY="-Xms64M -Xmx1G" SERVER_OPTS_VM="-server -XX:NewRatio=3 -XX:SurvivorRatio=4 -XX:TargetSurvivorRatio=90 -XX:MaxTenuringThreshold=6 -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:ConcGCThreads=4 -XX:ParallelGCThreads=4 -XX:MetaspaceSize=256M -XX:MaxMetaspaceSize=256M -XX:ReservedCodeCacheSize=240M -XX:+ExplicitGCInvokesConcurrent -XX:PretenureSizeThreshold=64m -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=75 -XX:CMSMaxAbortablePrecleanTime=6000 -XX:+CMSParallelRemarkEnabled -XX:+ParallelRefProcEnabled -XX:+UseCMSCompactAtFullCollection -XX:CMSFullGCsBeforeCompaction=10 -verbose:gc -Xloggc:gc_%p.log -XX:+PrintGC -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintHeapAtGC -XX:+PrintGCTimeStamps -XX:+PrintTenuringDistribution -XX:+PrintGCApplicationStoppedTime -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=10 -XX:GCLogFileSize=100M -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=. -XX:-OmitStackTraceInFastThrow -XX:-UseBiasedLocking -XX:AutoBoxCacheMax=20000 -DLog4jContextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector" SERVER_OPTS="$SERVER_OPTS_MEMORY $SERVER_OPTS_VM -Dspring.config.location=file:.././yml/application-local.yml,classpath:application.yml" ``` ## Fescar 针对支持ACID SQL数据库提供无入侵的分布式事务读未提交隔离级别支持,对于其他类存储提供手动Commit和Rollback支持. # CI ## jenkins配置及步骤
0
ykameshrao/spring-hibernate-springdata-springmvc-maven-project-framework
This project provides sample hibernate entities, spring data entities, akka actors to offload mail sending like jobs, models, repositories, services and controllers classes. There are also many framework level classes to help handle exceptions and errors in the project you may start developing using this. The UI for the default simple web project bundled in this framework is built using Twiiter Bootstrap, Apache Tiles, jQuery, jQuery Validation, JSPs.
null
null
1
wttech/aem-stubs
Tool for providing sample data for AEM applications in a simple and flexible way. Stubbing server on AEM, no separate needed.
aem aem-automation aem-tools aem64 aem65 groovy mock mocking mocks moco stub stub-server stubbing stubs wiremock
null
1
XunMengWinter/MaterialShow
Material Design 优雅处理复杂视图。 滑动/滚动冲突、沉浸式最简单(Effective)的解决方案。 Material Desin demo/sample/example
null
# MaterialShow Material Design 优雅处理复杂视图 ### 介绍: http://www.jianshu.com/p/e64a4e08f57a ### 我的简书: http://www.jianshu.com/users/e36e60b5af17/latest_articles ### 主要实现 利用Android最新控件实现: * 保持ViewPager中Fragment的状态。 * 快速绑定已有数据的TabLayout与ViewPager。 * 在Fragment中显示标题栏,并为该标题栏添加菜单。 * Fragment嵌套Fragment。 * 一行代码解决RecyclerView等视图的滚动冲突。 * 为Fragment中的头部视图(含图片)实现沉浸式。 * 最简单的沉浸式版本适配。 ### 效果图 ![使用Martial Design优雅实现](http://upload-images.jianshu.io/upload_images/2066824-b58f96c2b4dc80ec.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/540/h/960) ### 要点解读 ``` // 保存ViewPager中Fragment的状态 mViewPager.setOffscreenPageLimit(mFragments.size()); ``` ``` // 在Fragment中显示标题栏,并为该标题栏添加菜单。 mToolbar.inflateMenu(R.menu.main); mToolbar.setOnMenuItemClickListener(this); ``` ``` // 快速绑定已有数据的TabLayout与ViewPager。 mViewPager.addOnPageChangeListener(new TabLayout.TabLayoutOnPageChangeListener(mTabLayout)); mTabLayout.addOnTabSelectedListener(this); ``` ``` // Fragment中ViewPager嵌套Fragment,需要注意传入的FragmentMangager(),不然子Fragment可能无法显示。 mViewPager.setAdapter(new FragmentStatePagerAdapter(getChildFragmentManager()... ``` ``` // 一行代码解决RecyclerView等视图的滚动冲突,具体请看[源码](https://github.com/XunMengWinter/MaterialShow/tree/master) 。 app:layout_behavior="@string/appbar_scrolling_view_behavior" ``` ``` // 为Fragment中的头部视图(含图片)实现沉浸式。 <style name="AppTheme.NoActionBar"> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> <item name="android:windowDrawsSystemBarBackgrounds" tools:targetApi="lollipop">true</item> <item name="android:statusBarColor" tools:targetApi="lollipop">@android:color/transparent </item> </style> // 为该Fragment所在的Activity设定该主题,会带来一些输入框问题,但是由于AppBar是在Fragment里面,如果在Activity里面的话直接设定为上面的主题就可以实现头部图片沉浸式了。 <style name="AppTheme.NoActionBar.Immerse"> <item name="android:windowTranslucentStatus" tools:targetApi="kitkat">true</item> </style> ``` ``` // 最简单的沉浸式版本适配,请看源码。 // 为ToolBar设置MarginTop. android:layout_marginTop="@dimen/height_status_bar" //在 dimen.xml 文件中添加 <dimen name="height_status_bar">0dp</dimen> //在 dimen.xml(v19) 文件中添加 <dimen name="height_status_bar">22dp</dimen> // p.s 这样一来安卓4.4以上toolbar就距离顶部22dp了,而比4.4低的版本是没有沉浸式这一概念的,所以设为0dp就好。 ```
0
SAP-samples/cloud-sfsf-benefits-ext
SAP Employee Benefits Management is a sample extension application for SuccessFactors Employee Central. The application runs on SAP Cloud Platform and can be used by employees to make orders in specific benefits' campaigns and by HR managers to manage employee benefits and set up new benefits campaigns.
sample sample-code sap-cloud-platform successfactors successfactors-employee-central
[![REUSE status](https://api.reuse.software/badge/github.com/SAP-samples/cloud-sfsf-benefits-ext)](https://api.reuse.software/info/github.com/SAP-samples/cloud-sfsf-benefits-ext) # Description *SAP Employee Benefits Management Sample Application* is a sample extension application for *SAP SuccessFactors Employee Central*. The application can be used by employees to make orders in specific benefit campaigns and by HR managers to manage employee benefits and set up new benefit campaigns. The purpose of this sample application is to show you how to deploy and configure a Java extension application for SAP SuccessFactors on the SAP Business Technology Platform. # Requirements ## System requirements Before you proceed with the rest of this tutorial, be sure you have access to: * SAP SuccessFactors test company - you need Administrator permissions for SAP SuccessFactors * SAP SuccessFactors provisioning * SAP Business Technology Platform subaccount in the Neo environment. **Note that SAP Business Technology Platform _Trial is not supported_ by the extension scenario.** ## Development environment requirements Your environment shall include the following: * JDK (Java SE Development Kit), version 7 or greater * [Apache Maven](https://maven.apache.org) * [Git](https://git-scm.com) client * [SAP BTP Tools](https://tools.hana.ondemand.com) * optionally, a recent version of [Eclipse IDE for Java EE Developers](http://www.eclipse.org/downloads/eclipse-packages/) instead of Apache Maven and Git * recent browser ## Configure integration between SAP Business Technology Platform and SAP SuccessFactors :information_source: You can skip this step if you already have a subaccount integrated with your SAP SuccessFactors company. Before you proceed with the next steps, you have to integrate your SAP SuccessFactors company with a subaccount on the SAP Business Technology Platform. Integration is a two steps process: 1. First you have to create an _integration token_. This thing identifies the SAP Business Technology Platform subaccount that you will intregrate with your SAP SuccessFactors company. To create a token, open the SAP Business Technology Platform Cockpit and select a subaccount that you want to integrate. Of course you can always create a new one. It costs nothing. Then navigate to _Integration Tokens_ and create a new _SAP SuccessFactors Token_. 2. Once ready, use the token to initiate the integration in SAP SuccessFactors provisioning. The whole process is described in details in the [here](https://help.sap.com/viewer/09c960bc7676452f9232eebb520066cd/1805/en-US/09bb734cf5614896a4cdb66f3e1528ec.html). Once integration is completed, your subaccount becomes an _extension subaccount_. The two most noticeable things about it are: First, the extension subaccount's Application Identity Provider (IdP) is configured to be the SuccessFactors IdP. From now on, whenever authentication is required by an application deployed in this subaccount, the end user will be redirected to the SuccessFactors IdP to authenticate himself. Same is true when the extension subaccount is subscribed for an application running in another, regular subaccount. And the second important thing is the fact the SAP Business Technology Platform has stored metadata describing the pairing. For all the subsequent operations in the extension subaccount you do not need to specify which is your SuccessFactors company. It's already known, and the SAP Business Technology Platform will use this knowledge to assist you with the configuration and the lifecycle management of your extension applications. ## Landscape setup Now it might be tempting to start developing your extension directly in the extension subaccount. But it's worth to consider the following: * You might already have resources like database and java quotas assigned to another subaccount. Yes, BTP allows you to share or distribute those resources between your subaccounts, but as you will see that's not necessary at all. * The extension subaccount contains sensitive data - the Service Provider primary key used in backend API authentication flows; the connectivity configurations to your SAP SuccessFactors or third-party systems. In production, only a limited number of people should have access to these. Even the support guys shall not be able to see them. * If you have extensions from different providers deployed in one and the same subaccount then for maintenance and support all of them shall have access to it. Eventually they will be able to see each other's logs or even change some configurations. Fortunately, the SAP Business Technology Platform multitenancy concept can help you tackle the above challenges even if your application is not multitenant! What you need to do is: * use the extension subaccount only as a configuration container * restrict the access to it * deploy your applications in regular subaccounts * and eventually subscribe the extension subaccount to your applications No matter if your applications are multitenant or not, they will automatically have access to the configurations stored on subscription level. Furthermore, you will not have to share resources between subaccounts; access to sensitive configurations will be restricted and different providers will not be able to see each other's applications. To experience this model in action we will use two subaccounts to "develop" the sample extension application: * **dev** subaccount - a regular subaccount with a database and at least one Java VM. It will be used to deploy the application and bind it to a datasource. * **ext** subaccount - the extension subaccount integrated with your SAP SuccessFactors company. This subaccount will be subscribed to the application deployed in the dev subaccount. All further configurations will be executed on this subscription level. ## Develop and run the sample application The first step is to clone this git repository and build the application. ``` git clone https://github.com/SAP/cloud-sfsf-benefits-ext.git mvn clean install -f cloud-sfsf-benefits-ext ``` ### Deploy and start the application The build process generates a web application archive `ROOT.war` under the `cloud-sfsf-benefits-ext/target` folder. Deploy this archive to your dev subaccount using a tool of your choice - SAP Business Technology Platform Cockpit, SDK Tools, maven or Eclipse. The command line for the SDK tools looks like this: ``` neo deploy --account <dev_account_name> --application benefits --host <hana.ondemand.com> --user <SAP_user_id> --source cloud-sfsf-benefits-ext/target/ROOT.war ``` Before you start the application, you have to bind it to a data source. You can do this via the SAP Business Technology Platform Cockpit or in the console using the SDK tools: ``` neo bind-db --account <dev_account_name> --application benefits --host <hana.ondemand.com> --id <db_id> --db-user <db_user> --db-password <db_pwd> --user <SAP_user_id> ``` Now you can start your application: ``` neo start --synchronous --account <dev_account_name> --application benefits --host <hana.ondemand.com> --user <SAP_user_id> ``` ### Subscribe the extension subaccount to your application After the application is up and running you can proceed to configure it to use your SAP SuccessFactors tenant (company). Since all the SuccessFactors related configurations will be stored on subscription level to your extension subaccount, the first step is to subscribe the extension subaccount to the application. You have to be `Administrator` or have the `manageSubscriptions` platform scope in both accounts in order to setup the subscription: ``` neo subscribe --account <ext_account_name> --application <dev_account_name>:benefits --host <hana.ondemand.com> --user <SAP_user_id> ``` Note that the account parameter here points to your extension subaccount, and the application parameter is composed of the name of your dev subaccount, semicolon and the application name. In all remaining configurations, wherever the application must be referred into a command, you have to use the same pattern with dev account, semicolon and application name. ### Configure Assertion Consumer Service As already explained, SAP SuccessFactors is configured to be the default IdP for the extension subaccount. If you now access the application, you will be redirected to SuccessFactors for authentication. Assuming you have valid user credentials, the authentication will succeed, but after that you will not be redirected back to the application, because the application is not registered as a trusted Service Provider (SP) in SuccessFactors. To register it, you have to execute the `hcmcloud-enable-application-access` command: ``` neo hcmcloud-enable-application-access --account <ext_account_name> --application <dev_account_name>:benefits --application-type java --host <hana.ondemand.com> --user <SAP_user_id> ``` ### Configure backend connectivity The sample application uses backend connectivity to SAP SuccessFactors to fetch the logged in user details. To configure this connectivity, you use the `hcmcloud-create-connection` SDK command. The result of its execution will be a destination named `sap_hcmcloud_core_odata` on subscription level in the SAP Business Technology Platform and a corresponding OAuth client in your SAP SuccessFactors tenant. The destination is configured with `OAuth2SAMLBearerAssertion` authentication and at runtime the end user will be propagated with the backend API calls to SAP SuccessFactors. ``` neo hcmcloud-create-connection --account <ext_account_name> --application <dev_account_name>:benefits --host <hana.ondemand.com> --user <SAP_user_id> ``` ### Configure authorization The next step is to configure the authorization. The sample application relies on the standard Java EE security model for Web Applications - it uses declarative authorization to protect resources and programmatic authorization checks to present dynamic content to the end user according to his roles. By default, user roles are managed in the SAP Business Technology Platform. Although this model is convenient for many use cases, it imposes some challenges when a system with its own role model like SAP SuccessFactors is being extended * the SAP HR administrator shall have access to the SAP Business Technology Platform to manage user permissions * to do so, he must be trained accordingly * and last but probably most important - he has to double maintain those permission configurations To help you overcome those challenges, SAP Business Technology Platform provides you the capability to configure you Java applications to use the `SAP SuccessFactors Role Provider` instead of the platform's default. Whenever an authorization check is required by your application, the underlying Java runtime uses the already configured connectivity to execute it against the SAP SuccessFactors system. Of course, there are caches in place to minimize the impact on the application's performance. This allows you to continue using SAP SuccessFactors as a single place to manage user permissions. Role Provider can be switched in the SAP Business Technology Platform Cockpit (under the Roles section) or using the `hcmcloud-enable-role-provider` SDK command: ``` neo hcmcloud-enable-role-provider --account <ext_account_name> --application <dev_account_name>:benefits --host <hana.ondemand.com> --user <SAP_user_id> ``` Once the platform is configured to read the user roles from the SAP SuccessFactors system it is convenient to be able to provision those roles automatically so that SuccessFactors HR administrators do not need to create them manually, but instead just make the necessary user assignments. This is achieved using the `hcmcloud-import-roles` SDK command. It takes as a parameter a JSON file describing the roles required by your application and creates them in the SAP SuccessFactors tenant. There are two important things to notice about this command: * it does not modify any existing roles * it is executed in the scope of subaccount, not application. This means roles can be shared between applications. The sample application's JSON file with role definitions is [resources/roles.json](resources/roles.json). To create the roles defined in it you use the `hcmcloud-import-roles` SDK command: ``` neo hcmcloud-import-roles --account <ext_account_name> --host <hana.ondemand.com> --user <SAP_user_id> --location cloud-sfsf-benefits-ext/resources/roles.json ``` ### Configure UI integration The last step before you are able to try the application is to integrate it visually in your SAP SuccessFactors tenant. You can achieve this by creating a home page tile - rectangle in the SuccessFactors home page which links to your application or embeds it. Tile capabilities are different, depending on the version of the home page. More details you can find in the [SAP SuccessFactors home page tiles documentation](https://help.sap.com/viewer/DRAFT/59f821da545a4bdb94f1eb8fa22e4b36/LATEST/en-US/00c8674252d1461691bec004be68f425.html) You can define the home page tiles for your application in a JSON file and import it into the target SuccessFactors system with the `hcmcloud-register-home-page-tiles` SDK command: ``` neo hcmcloud-register-home-page-tiles --account <ext_account_name> --application <dev_account_name>:benefits --application-type java --host <hana.ondemand.com> --user <SAP_user_id> --location cloud-sfsf-benefits-ext/resources/tiles.json ``` The sample application's JSON file with tile definitions is [resources/tiles.json](resources/tiles.json). ### Open the application Now you are ready to open the application. Login to your SAP SuccessFactors tenant and on the home page under the News section there shall be a new tile _SAP Corporate Benefits_. Click on it to open the application in a new window. If you click on the _About Me_ tile you will see the user details fetched with a backend call to SAP SuccessFactors. Important Disclaimers on Security and Legal Aspects --------------------------------------------------- This document is for informational purposes only. Its content is subject to change without notice, and SAP does not warrant that it is error-free. SAP MAKES NO WARRANTIES, EXPRESS OR IMPLIED, OR OF MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. **Information Security** Your SuccessFactors system may (and most probably will) contain personal and confidential data. Make sure to connect ONLY trusted extension applications which deal with such data accordingly and comply to the security requirements of your organization. NEVER connect random or untrusted extension applications neither to your productive, nor to your TEST SuccesFactors system. **Coding Samples** Any software coding and/or code lines / strings ("Code") included in this documentation are only examples and are not intended to be used in a productive system environment. The Code is only intended to better explain and visualize the syntax and phrasing rules of certain coding. SAP does not warrant the correctness and completeness of the Code given herein, and SAP shall not be liable for errors or damages caused by the usage of the Code, unless damages were caused by SAP intentionally or by SAP's gross negligence. # Contributing See [CONTRIBUTING.md](CONTRIBUTING.md) # Code of Conduct See [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) # Licensing Copyright 2023 SAP SE or an SAP affiliate company and cloud-sfsf-benefits-ext contributors. Please see our [LICENSE](LICENSE) for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available via the [REUSE tool](https://api.reuse.software/info/github.com/SAP-samples/cloud-sfsf-benefits-ext).
1
helloworlde/grpc-java-sample
gRPC sample with Java, contains stubs, streaming, health check, retry and hedging policy, load balancer, name resolver, tls and channez, gateway; 包含 gRPC Java 的各项功能特性的最简单使用
channelz grpc grpc-health grpc-hedging grpc-java grpc-retry grpc-service grpc-streaming
# gRPC Java Sample gRPC Java 相关功能简单使用 --- |模块|功能| |:--|:---| |[HelloWorld](helloworld)| 最简单的阻塞调用| |[Future Stub](future-stub)| 异步调用| |[Async Stub](async-stub)|通过异步回调调用| |[Server Stream](server-stream)|Server 端流| |[Client Stream](client-stream)|Client 端流| |[Bidirectional Stream](bidirectional-stream)| 双向流| |[Interceptor](interceptor)|拦截器使用| |[Stream Tracer](stream-tracer)| 使用 StreamTracer 追踪流| |[Log](log)| 输出请求的详细 Log| |[BinaryLog](binlog)| 将请求信息输出到二进制日志中| |[Retry Policy](retry-policy)| 使用重试策略| |[Hedging Policy](hedging-policy)|使用对冲策略| |[TLS](tls)|使用 TLS 加密| |[NameResolver](name-resolver)|自定义命名解析| |[HealthCheck](health-check)| 使用健康检查| |[LoadBalancer](load-balancer)|自定义负载均衡策略| |[Gateway](gateway)| 使用 Gateway 对外提供 HTTP 服务| |[Channelz](channelz)| 监控 Channel 行为| |[Reflection](reflection)| gRPC 服务反射接口,获取服务信息,实现泛化调用| - [gRPC 模块与工具](doc/index.md) ## 参考文档 - [gRPC](https://grpc.io/) - [grpc-java](https://github.com/grpc/grpc-java) - [gRPC Java Quick Start](https://grpc.io/docs/languages/java/quickstart/) - [Protobuf](https://developers.google.com/protocol-buffers) - [Protobuf Java](https://developers.google.com/protocol-buffers/docs/javatutorial)
1
awslabs/aws-codepipeline-custom-job-worker
Use this sample to help you develop your own job worker when creating a custom action for AWS CodePipeline. For more information, see Create a Custom Action for a Pipeline. http://docs.aws.amazon.com/codepipeline/latest/userguide/how-to-create-custom-action.html
null
# AWS CodePipeline Job Worker Read more about CodePipeline: http://aws.amazon.com/codepipeline/ ## Build ### Dependencies Install the following tools to build the AWS CodePipeline Job Worker: - Java SE Development Kit 8 - Apache Maven 3.3 ### Ant targets You can use the following ant targets to build the code: ```bash mvn clean # Cleans the workspace mvn compile # Compiles the code mvn test # Runs the unit tests mvn package # Default target, which compiles the code, runs the unit tests, creates the jar file and deployment bundle ``` ## Start Use the init.d script to start the AWS CodePipeline Job Worker polling for custom actions: ```bash service aws-codepipeline-jobworker start ``` The script optionally takes the configuration class as a parameter. If you want to run the job worker for third party actions, you can use the following command: ```bash service aws-codepipeline-jobworker start "com.amazonaws.codepipeline.jobworker.configuration.ThirdPartyJobWorkerConfiguration" ``` You can also specify your own configuration class. It only has to implement the `JobWorkerConfiguration` interface. ## Configuration The job worker comes with two pre-defined configuration classes: `CustomActionJobWorkerConfiguration` and `ThirdPartyJobWorkerConfiguration`. Both inherit from the `DefaultJobWorkerConfiguration` to share most of the configuration settings. You can configure the following settings: ```java // Configure action type id the job worker polls for public ActionTypeId getActionTypeId() { return new ActionTypeId( "Deploy", // Action Type Category: Source, Build, Test, Deploy, Invoke "Custom", // Action Type Owner: Custom or ThirdParty "MyCustomAction", // Action Type Provider: Name of your action type "1" // Action Type Version: e.g. "1" ); } // How frequently the job worker polls for new jobs private static final long POLL_INTERVAL_MS = 30000L; // e.g. every 30 seconds // Maximum number of worker threads. Indicates how many jobs can be processed in parallel. private static final int WORKER_THREADS = 10; ``` ### AWS Region * The AWS region for the custom job worker can be set with the `AWS_REGION` environment variable, and it will poll for jobs in this region. * If the environment variable is not set, then the custom job worker will try to use the region of the EC2 instance on which it is running. * You can also modify `getRegion()` method in `DefaultJobWorkerConfiguration.java`. ```java private static Region getRegion() { return Region.getRegion(Regions.US_EAST_1); } ``` ## Deployment The job worker comes with AWS CodeDeploy installation scripts. Set up your application and deployment group in AWS CodeDeploy and run the following command to deploy the agent: ```bash # Replace with your Amazon S3 bucket name AMAZON_S3_BUCKET=<your-amazon-s3-bucket> # Make sure that you set up your application and deployment group in AWS CodeDeploy APPLICATION_NAME=AwsCodePipelineJobWorker DEPLOYMENT_GROUP_NAME=Production # Compile the code and create deployment bundle mvn package # Install the jar file as a dependency ``` mvn install:install-file -Dfile=target/jobworker-1.0.jar -DgroupId=com.amazonaws.codepipeline -DartifactId=jobworker -Dversion=1.0 -Dpackaging=jar ``` # Create a tar archive from the build output cd build/output tar -cf ../AwsCodePipelineJobWorker.tar * # Upload the deployment bundle to your Amazon S3 bucket. aws s3 cp ../AwsCodePipelineJobWorker.tar s3://$AMAZON_S3_BUCKET/AwsCodePipelineJobWorker.tar # Start the deployment using AWS CodeDeploy aws deploy create-deployment --application-name $APPLICATION_NAME --deployment-group-name $DEPLOYMENT_GROUP_NAME --s3-location bucket=$AMAZON_S3_BUCKET,bundleType=tar,key=AwsCodePipelineJobWorker.tar ```
1
bengarney/PBLabsProfiler
A simple sampling Java/SWT profiler for Flash applications. Under the GPL license.
null
null
0
ykameshrao/spring-mvc-angular-js-hibernate-bootstrap-java-single-page-jwt-auth-rest-api-webapp-framework
This project provides sample hibernate entities, spring data entities, angularjs mvc code, models, exception handling interceptors, repositories, services and controllers classes. The UI for the default simple web project bundled in this framework is built using Twiiter Bootstrap and AngularJS Single Page App. The projects brings together Java, Spring 4, Spring MVC 4, Spring JPA, Hibernate, Angular JS, Twitter Bootstrap, JWT Token Authentication technology in a clean easy to use fashion.
null
# Spring MVC AngularJS Hibernate Bootstrap JWT Token Authenticated REST API Single Page Java Webapp Framework ![Home Page](https://github.com/ykameshrao/spring-mvc-angular-js-hibernate-bootstrap-java-single-page-jwt-auth-rest-api-webapp-framework/blob/master/screenshots/HomePage.png) ### Blog Post ### http://www.orangeapple.org/post/134959159212/spring-mvc-angularjs-hibernate-bootstrap-java ### Introduction ### I am showcasing a webapp template project framework that can be used AS-IS to begin developing a modern AngularJS Single Page Web App backed by Spring and Java. The projects brings together Java, Spring 4, Spring MVC 4, Spring JPA, Hibernate, Angular JS, Twitter Bootstrap, JWT Token Authentication technology in a clean easy to use fashion. Download and start building your next big thing in Java. Free your mind of scalability and other web app development scares. The stack here consists of Spring MVC, AngularJS, Hibernate, Spring JPA, Twitter Bootstrap, JWT Token Authentication, RESTful API. All of these are nicely brought togather with a bunch of Java and JS boilerplate code meant to give a template framework allowing the flow of control in conventional way. Consider this as a pre-configured Java Template Project Framework promoting the Convention over Configuration idea of Design. ### Whats in the Project? ### The project includes all the code required to create and authenticate a new user including backend models, entities, repositories, service, controller code and frontend forms and relevant javascript validations. Refer the screenshots for getting some idea of the functionality. Also implemented is a ready to use form validation setup in javascript, along with URL redirection based on authenticated and un-authenticated sections/endpoints of the website. Also implemented is the simple JWT token based authentication of the REST API endpoints. The project organises the code in the following sections- 1. Framework - java package housing the common data, dao, service, common code classes to generalize most of the boilerplate code using Java generics and other similar rich features. 2. Model - java package housing the code related to creating database entities and repository classes defining code to access these entities from database using Hibernate and Spring JPA. 3. Service - java package housing the code defining the various methods specific to your business logic to manipulate the data accordingly. 4. Interceptor - Spring AOP in action here to remove redundant boilerplate code to handle and respond to exceptions in a standard way and also collect performance metrics of the API and service. Refer: WebAppMetricsInterceptor.java, WebAppExceptionAdvice.java 5. Auth - package housing the filter code to process and handle JWT Token based authentication of the REST API requests. 6. Core - package housing the code associated with running a scheduled set of background jobs. The idea with this code piece is to enable offload asynchronous processing like sending mails, uploading files to S3, etc. It needs more work to better setup the thread pools, etc. The code present here today shows a small coding problem I did to create a priority based job runner prioritized using Category they belong to. This also shows a job queue that can be persisted to database for execution of jobs without missing. 7. Categories - The category entity shows a self link entity object that lets you create categories and sub categories of categories using a single table. 8. AngularJS App - the entire AngularJS app is placed in the webapp directory and further organizes the JavaScript code into services, controllers, views and models giving a convention-over-configuration setup to start building your AngularJS powered Web UI. The entire purpose of this code peice is to get you bootstrapped and running ASAP. The primary single page app (SPA) is loaded in index.html. ### Executing ### Download the code and build the project the same way as you would do for any maven project. I have currently plugged in the test-jdbc xml file in the configuration that creates and runs a InMemory H2 database. I also included a standard MySQL Spring JDBC xml file. Use that one by changing the context file in web.xml and after changing the parameters there according to your local MySQL setup. ###Technologies### - Java - Spring - Spring MVC - Spring AOP - Hibernate - Angular JS - Twitter Bootstrap - JWT Token Auth - Domain Driven Model - Maven ### References ### I have heavily referenced many external links and books while creating this project apart from my own experience. I am listing a few of them here. If I missed something, please accept my deepest apologies. I also spent a long time trying to implement Spring Security based authentication but ultimately failed. My whole approach here was to bring everything together in a simple and easy and ready to reuse package. I have tried to avoid any direct copying of code though, since most of it required some kind of changes. Most of the spring security code is copied from elsewhere but you would find it in the unused package since it was never really used in the functioning website. 1. AngularJS In Action 2. https://github.com/jwtk/jjwt ### ScreenShots ### ![Home Page](https://github.com/ykameshrao/spring-mvc-angular-js-hibernate-bootstrap-java-single-page-jwt-auth-rest-api-webapp-framework/blob/master/screenshots/HomePage.png) ![Registration Page w/ Validation](https://github.com/ykameshrao/spring-mvc-angular-js-hibernate-bootstrap-java-single-page-jwt-auth-rest-api-webapp-framework/blob/master/screenshots/RegisterWithValidationFail.png) ![Registration Page](https://github.com/ykameshrao/spring-mvc-angular-js-hibernate-bootstrap-java-single-page-jwt-auth-rest-api-webapp-framework/blob/master/screenshots/RegisterWithValidationSuccess.png) ![Dashboard Page](https://github.com/ykameshrao/spring-mvc-angular-js-hibernate-bootstrap-java-single-page-jwt-auth-rest-api-webapp-framework/blob/master/screenshots/Dashboard.png) ![API Response Structure](https://github.com/ykameshrao/spring-mvc-angular-js-hibernate-bootstrap-java-single-page-jwt-auth-rest-api-webapp-framework/blob/master/screenshots/APIResponse.png) ### Enjoy!! ### GitHub Repo for the project: https://github.com/ykameshrao/spring-mvc-angular-js-hibernate-bootstrap-java-single-page-jwt-auth-rest-api-webapp-framework ### Blog Post: http://www.orangeapple.org/post/134959159212/spring-mvc-angularjs-hibernate-bootstrap-java ###
1
Dentrax/TileMapGenerator
Create your own 2D Maps with layer-by-layer system using Noise-Sample and BufferedImage pattern
2d 2d-graphics 2d-map 2d-map-iterator 2d-tile java layer map map-generation map-generator map-tiles map-viewer noise-2d noise-algorithms noise-generator noise-maps noise-sample randomization tilemap
<h1 align="center">TileMapGenerator Public Source Repository</h1> **Create your own 2D Maps with layer-by-layer system using Noise-Sample and BufferedImage pattern** **Warning: Please see the [Copyright & Licensing](#copyright--licensing) section before use** [What It Is](#what-it-is) [How To Use](#how-to-use) [Features](#features) [Requirements](#requirements) [About](#about) [Collaborators](#collaborators) [Branches](#branches) [Copyright & Licensing](#copyright--licensing) [Contributing](#contributing) [Contact](#contact) ## What It Is **TileMapGenerator with Java using Noise-Sample and BufferedImage pattern** TileMapGenerator program for Java language is an easy and simple way to create your own 2D Maps with layer-by-layer system. **Uses : Please see [Requirements](#requirements) before use** **128x128** * SKY ![Preview Thumbnail](https://raw.githubusercontent.com/Dentrax/TileMapGenerator/master/screenshots/sky_128.gif) * GROUND ![Preview Thumbnail](https://raw.githubusercontent.com/Dentrax/TileMapGenerator/master/screenshots/ground_128.gif) * UNDERGROUND ![Preview Thumbnail](https://raw.githubusercontent.com/Dentrax/TileMapGenerator/master/screenshots/underground_128.gif) **128x256** ![Preview Thumbnail](https://raw.githubusercontent.com/Dentrax/TileMapGenerator/master/screenshots/mix_128_256.gif) ## Features * Map generation engine in given specifications * Adjustable Map size * Adjustable MapViewer scale-size * Adjustable TileTypes colors & ids * Detailed Map-Layer specifications * Adjustable size & scale & step-size feature of each Map-Layer * Advanced Map sample & noise pattern generation engine * Configurable random seed for each Map-Layer * Unique, fully randomized Map generation ## How To Use **Warning: You must use power-of-two values for map-size** **Warning: You must use least 128x128 values for map-size** * Define your unique Random ```java private static final Random random = new Random(System.currentTimeMillis()); ``` * Define your own LayerSettings ```java LayerSetting patternLayerSetting = new LayerSetting(height, width, stepSize, depth, random); LayerSetting skyLayerSetting = new LayerSetting(128, 128, 16, 0, random); LayerSetting groundLayerSetting = new LayerSetting(128, 128, 16, 0, random); LayerSetting undergroundLayerSetting = new LayerSetting(128, 128, 16, 0, random); ``` * Define your own LayerGenerators ```java LayerGenerator patternGenerator = new LayerGenerator(patternLayerSetting); LayerGenerator skyGenerator = new LayerGenerator(skyLayerSetting); LayerGenerator groundGenerator = new LayerGenerator(groundLayerSetting); LayerGenerator undergroundGenerator = new LayerGenerator(undergroundLayerSetting); ``` * Create your own LayerMap ```java LayerMap patternMap = patternGenerator.doCreate(LayerType.ANY); LayerMap skyMap = skyGenerator.doCreate(LayerType.SKY); LayerMap groundMap = groundGenerator.doCreate(LayerType.GROUND); LayerMap undergroundMap = undergroundGenerator.doCreate(LayerType.UNDERGROUND); ``` * View your created Map ```java TileMapViewer.ViewMap("PATTERN", heightScaleFactor, widthScaleFactor, patternMap); TileMapViewer.ViewMap("SKY", 4, 4, skyMap); TileMapViewer.ViewMap("GROUND", 4, 4, groundMap); TileMapViewer.ViewMap("UNDERGROUND", 4, 4, undergroundMap); ``` ## Requirements * You should be familiar with Java family * You will need a text editor (i.e Notepad++) or IDE (i.e IntelliJ Idea) * You will need a computer on which you have the rights to install JDK and Java SE dependencies ## About TileMapGenerator was created to serve three purposes: **TileMapGenerator is a basically an simple Noise Tile-Map-Generator** 1. To act as a map-viewer which is given noise and generator ratios. 2. To act as a byte-pixel based BufferedImage viewer. 3. To act as a map-generator that you can use in your own games or research purposes. ## Collaborators **Project Manager** - Furkan Türkal (GitHub: **[dentrax](https://github.com/dentrax)**) ## Branches We publish source for the **[TileMapGenerator]** in single rolling branch: The **[master branch](https://github.com/dentrax/TileMapGenerator/tree/master)** is extensively tested by our QA team and makes a great starting point for learning the algorithms. Also tracks [live changes](https://github.com/dentrax/TileMapGenerator/commits/master) by our team. ## Copyright & Licensing The core project code is copyrighted by Markus 'Notch' Persson who made main-noise-core in Twitch live-broadcast. The main project code is copyrighted by Furkan 'Dentrax' Türkal who made enhancements, fixes and improvements. And is covered by single licence. All program code (i.e. .java) is licensed under MIT License unless otherwise specified. Please see the **[LICENSE.md](https://github.com/Dentrax/TileMapGenerator/blob/master/LICENSE)** file for more information. **References** While this repository is being prepared, it may have been quoted from some sources. (i.e Notch) If there is an unspecified source, please contact me. ## Contributing Please check the [CONTRIBUTING.md](CONTRIBUTING.md) file for contribution instructions and naming guidelines. ## Contact TileMapGenerator was created by Furkan 'Dentrax' Türkal * <https://www.furkanturkal.com> You can contact by URL: **[CONTACT](https://github.com/dentrax)** <kbd>Best Regards</kbd>
0
AdamBien/x-ray
Statistics and analytics Java EE 6 software for blogs (tested with roller) and webapps. It is a vanilla Java EE 6 (REST/JAX-RS, CDI, EJB, JPA) app, tested on Glassfish v3.1, built with Maven 3 / hudson and developed with NetBeans 7. X-ray is the sample app of the Real World Night Hacks" book."
javaee microprofile roller webapp
x-ray ===== Statistics and analytics Java EE 6 software for blogs (tested with roller) and webapps. It is a vanilla Java EE 6 (REST/JAX-RS, CDI, EJB, JPA) app, tested on Glassfish v3.1, built with Maven 3 / Jenkins and developed with NetBeans 7. X-ray is the sample app of the [Real World Night Hacks](http://press.adam-bien.com/real-world-java-ee-night-hacks-dissecting-the-business-tier.htm) book.
1
aishnacodes/Geolocation-ARCore
The application serves as a base for any developer to build their own Geolocation AR app. The basic concept of the app is to help a user identify a certain building or location. When the user points their camera at a building, a 3D object like a wooden sign representing the direction and name of the building, is augmented onto their camera view. The user can view this object from any angle, interact with it by touching it for further information about the location. The sample app developed as proof of concept is a UCSC tour app that helps new UCSC students identify cafes, libraries, parking spots and academic building all around campus.
null
# Geolocation-ARCore The application serves as a base for any developer to build their own Geolocation AR app. The basic concept of the app is to help a user identify a certain building or location. When the user points their camera at a building, a 3D object like a wooden sign representing the direction and name of the building, is augmented onto their camera view. The user can view this object from any angle, interact with it by touching it for further information about the location. The sample app developed as proof of concept is a UCSC tour app that helps new UCSC students identify cafes, libraries, parking spots and academic building all around campus. The documentation for this project is available in the report GeoAR.pdf https://youtu.be/RAg6u2AZ1fI
1
eugenp/tutorials
Just Announced - Learn Spring Security OAuth": "
null
# Cloning the repository If you are getting an error while cloning the repository, try running: git config --global http.postBuffer 5000000 This will increase the size of the buffer from the default 1MiB to 5MiB. To revert this value to the default, use: git config --global http.postBuffer 1000000 The Courses ============================== Here's the new "Learn Spring" course: <br/> **[>> LEARN SPRING - THE MASTER CLASS](https://www.baeldung.com/learn-spring-course?utm_source=github&utm_medium=social&utm_content=tutorials&utm_campaign=ls#master-class)** Here's the Master Class of "REST With Spring" (along with the new announced Boot 2 material): <br/> **[>> THE REST WITH SPRING - MASTER CLASS](https://www.baeldung.com/rest-with-spring-course?utm_source=github&utm_medium=social&utm_content=tutorials&utm_campaign=rws#master-class)** And here's the Master Class of "Learn Spring Security": <br/> **[>> LEARN SPRING SECURITY - MASTER CLASS](https://www.baeldung.com/learn-spring-security-course?utm_source=github&utm_medium=social&utm_content=tutorials&utm_campaign=lss#master-class)** Java and Spring Tutorials ================ This project is **a collection of small and focused tutorials** - each covering a single and well defined area of development in the Java ecosystem. A strong focus of these is, of course, the Spring Framework - Spring, Spring Boot and Spring Security. In addition to Spring, the modules here cover a number of aspects of Java. Profile based segregation ==================== We are using maven build profiles to segregate the huge list of individual projects we have in our repository. As for now, vast majority of the modules require JDK8 to build and run correctly. The projects are broadly divided into 3 lists: first, second and heavy. Next, they are segregated further on the basis of the tests that we want to execute. Additionally, there are 2 profiles dedicated for JDK9 and above builds - **which require JDK 17**. We also have a parents profile to build only parent modules. Therefore, we have a total of 9 profiles: | Profile | Includes | Type of test enabled | | -------------------------- | --------------------------- | -------------------- | | default-first | First set of projects | *UnitTest | | integration-lite-first | First set of projects | *IntegrationTest | | default-second | Second set of projects | *UnitTest | | integration-lite-second | Second set of projects | *IntegrationTest | | default-heavy | Heavy/long running projects | *UnitTest | | integration-heavy | Heavy/long running projects | *IntegrationTest | | default-jdk9-and-above | JDK9 and above projects | *UnitTest | | integration-jdk9-and-above | JDK9 and above projects | *IntegrationTest | | parents | Set of parent modules | None | Building the project ==================== Though it should not be needed often to build the entire repository at once because we are usually concerned with a specific module. But if we want to, we can invoke the below command from the root of the repository if we want to build the entire repository with only Unit Tests enabled: `mvn clean install -Pdefault-first,default-second,default-heavy` or if we want to build the entire repository with Integration Tests enabled, we can do: `mvn clean install -Pintegration-lite-first,integration-lite-second,integration-heavy` Analogously, for the JDK9 and above projects the commands are: `mvn clean install -Pdefault-jdk9-and-above` and `mvn clean install -Pintegration-jdk9-and-above` Building a single module ==================== To build a specific module, run the command: `mvn clean install` in the module directory. It can happen that your module is part of a parent module e.g. `parent-boot-1`,`parent-spring-5` etc, then you will need to build the parent module first so that you can build your module. We have created a `parents` profile that you can use to build just the parent modules, just run the profile as: `mvn clean install -Pparents` Building modules from the root of the repository ==================== To build specific modules from the root of the repository, run the command: `mvn clean install --pl asm,atomikos -Pdefault-first` in the root directory. Here `asm` and `atomikos` are the modules that we want to build and `default-first` is the maven profile in which these modules are present. Running a Spring Boot module ==================== To run a Spring Boot module, run the command: `mvn spring-boot:run` in the module directory. Working with the IDE ==================== This repo contains a large number of modules. When you're working with an individual module, there's no need to import all of them (or build all of them) - you can simply import that particular module in either Eclipse or IntelliJ. Running Tests ============= The command `mvn clean install` from within a module will run the unit tests in that module. For Spring modules this will also run the `SpringContextTest` if present. To run the integration tests, use the command: `mvn clean install -Pintegration-lite-first` or `mvn clean install -Pintegration-lite-second` or `mvn clean install -Pintegration-heavy` or `mvn clean install -Pintegration-jdk9-and-above` depending on the list where our module exists
0
rabbitmq/rabbitmq-tutorials
Tutorials for using RabbitMQ in various ways
rabbitmq tutorials
# RabbitMQ Tutorials This project contains code for [RabbitMQ tutorials](https://www.rabbitmq.com/getstarted.html) with their ports to various languages. This repository only contains runnable code. Please consult [tutorials on the site](https://www.rabbitmq.com/getstarted.html) to learn more about [the concepts](https://www.rabbitmq.com/getstarted.html), requirements, supported client library version and so on. And please check out the rest of the [RabbitMQ documentation](https://www.rabbitmq.com/documentation.html)! ## Prerequisites All tutorials **require a RabbitMQ node running on localhost** with stock (default) settings. Please refer to RabbitMQ documentation to learn more about various [installation options](https://www.rabbitmq.com/download.html): * A [Windows installer](https://www.rabbitmq.com/install-windows.html) * A [Docker image](https://hub.docker.com/_/rabbitmq/) * [Homebrew](https://www.rabbitmq.com/install-homebrew.html) on MacOS * Packages for [Ubuntu and Debian](https://www.rabbitmq.com/install-debian.html) as well as [RPM-based distributions](https://www.rabbitmq.com/install-rpm.html) * A generic [binary build](https://www.rabbitmq.com/install-generic-unix.html) for Linux, *BSD and other UNIX-like systems ## Languages The following ports are available: * [C#](./dotnet) * [C# (with Visual Studio)](./dotnet-visual-studio) * [C# (.NET 6.0)](./dotnet-6) * [Clojure](./clojure) * [Common Lisp](./common-lisp) * [Dart](./dart) * [Elixir](./elixir) * [Erlang](./erlang) * [Go](./go) * [Haskell](./haskell) * [JavaScript (with Node and amqplib)](./javascript-nodejs) (using callbacks) * [JavaScript (with Node and amqplib)](https://github.com/amqp-node/amqplib) (using promises/futures) * [Java](./java) (with manual dependency management) * [Java with Gradle](./java-gradle) * [Java with Maven](./java-mvn) * [Kotlin](./kotlin) * [PHP (with php-amqplib)](./php) * [PHP (with php-amqp)](./php-amqp) * [PHP (with queue-interop)](./php-interop) * [Perl](./perl) * [Python (with Pika)](./python) * [Ruby (with Bunny)](./ruby) * [Rust with amqprs](./rust-amqprs) * [Rust with Lapin](./rust-lapin) * [Scala](./scala) * [Swift](./swift) * [Spring AMQP](./spring-amqp) * [SoapUI](./soapui) ## License Released under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt).
0
rieckpil/blog-tutorials
:star: Codebase for various tutorials about Java, Spring Boot, AWS, Kotlin, and Testing
aws java java-ee jdk junit kotlin maven microprofile postgresql react spring-boot spring-framework spring-security spring-test spring-web spring-webclient spring-webflux testcontainers
# Hands-On Code Examples for Tutorials on [rieckpil.de](https://rieckpil.de/) [![Build Spring Boot Parent](https://github.com/rieckpil/blog-tutorials/actions/workflows/maven-parent.yml/badge.svg)](https://github.com/rieckpil/blog-tutorials/actions/workflows/maven-parent.yml) [![Build Non-Spring Boot Projects](https://github.com/rieckpil/blog-tutorials/actions/workflows/maven.yml/badge.svg)](https://github.com/rieckpil/blog-tutorials/actions/workflows/maven.yml) If you find an issue or bug within the provided code examples, feel free to open an [issue](https://github.com/rieckpil/blog-tutorials/issues), and we'll take a look. ## Cheat Sheets * [Testing Java Applications Cheat Sheet](https://rieckpil.de/testing-java-applications-cheat-sheet/) * [Java EE & Jakarta EE Application Server Cheat Sheet](https://rieckpil.de/cheatsheet-java-jakarta-ee-application-servers/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/application-server-cheatsheet)) * [Spring Web MVC Cheat Sheet](https://rieckpil.de/spring-web-mvc-cheat-sheet/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/)) ## Articles about Testing * [Parallelizing Only Java Unit Tests with JUnit 5 and Maven](https://rieckpil.de/parallelize-only-java-unit-tests-with-junit-5-and-maven/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/maven-junit-paralellize-tests)) * [Test Thymeleaf Controller Endpoints with Spring Boot and MockMvc](https://rieckpil.de/test-thymeleaf-controller-endpoints-with-spring-boot-and-mockmvc/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-thymeleaf-testing)) * [Spring Boot Testing: MockMvc vs. WebTestClient vs. TestRestTemplate](https://rieckpil.de/spring-boot-testing-mockmvc-vs-webtestclient-vs-testresttemplate/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-test-mockmvc-webtestclient-testresttemplate)) * [Amazon SQS Listener Testing with @SqsTest (Spring Cloud AWS)](https://rieckpil.de/amazon-sqs-listener-testing-with-sqstest-spring-cloud-aws/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-cloud-aws-sqs-testing)) * [Spring Boot Test Spring Web MVC HandlerInterceptor](https://rieckpil.de/spring-boot-test-spring-web-mvc-handlerinterceptor/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-web-mvc-testing)) * [LaunchDarkly Java Testing and Local Development Hints](https://rieckpil.de/launchdarkly-java-testing-and-local-development-hints/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/launchdarkly-java-development-testing-hints)) * [What the Heck Is the SpringExtension Used For?](https://rieckpil.de/what-the-heck-is-the-springextension-used-for/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-testing-tips-and-tricks)) * [Maven Setup For Testing Java Applications](https://rieckpil.de/maven-setup-for-testing-java-applications/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/testing-java-applications-with-maven)) * [Creating Deep Stubs With Mockito to Chain Method Stubbing](https://rieckpil.de/creating-deep-stubs-with-mockito-to-chain-method-stubbing/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/mockito-tips-and-tricks)) * [Spring Boot Unit and Integration Testing Overview](https://rieckpil.de/spring-boot-unit-and-integration-testing-overview/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-testing-tips-and-tricks)) * [Initialization Strategies With Testcontainers For Integration Tests](https://rieckpil.de/initialization-strategies-with-testcontainers-for-integration-tests/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/testcontainers-youtube-series)) * [Record Spring Events When Testing Spring Boot Applications](https://rieckpil.de/record-spring-events-when-testing-spring-boot-applications/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-test-spring-events)) * [Testing Spring Boot Applications With REST Assured](https://rieckpil.de/testing-spring-boot-applications-with-rest-assured/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-rest-assured)) * [How to Test Java HTTP Client Usages (e.g OkHttp, Apache HttpClient)](https://rieckpil.de/how-to-test-java-http-client-usages-e-g-okhttp-apache-httpclient/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/test-java-http-clients)) * [Spring Boot Test Slices Overview and Usage](https://rieckpil.de/spring-boot-test-slices-overview-and-usage/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-test-slice-annotations)) * [Guide to Testing Spring Boot applications with MockMvc](https://rieckpil.de/guide-to-testing-spring-boot-applications-with-mockmvc/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/testing-spring-boot-applications-with-mockmvc)) * [MongoDB Testcontainers Setup for @DataMongoTest](https://rieckpil.de/mongodb-testcontainers-setup-for-datamongotest/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-data-mongo-test-testcontainers)) * [Mocking Statics Methods with Mockito (Kotlin & Java)](https://rieckpil.de/mocking-static-methods-with-mockito-java-kotlin/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/mockito-tips-and-tricks)) * [Mock Java Constructors And Their Object Creation With Mockito](https://rieckpil.de/mock-java-constructors-and-their-object-creation-with-mockito/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/mockito-tips-and-tricks)) * [Write Concise Web Tests With Selenide for Java Projects](https://rieckpil.de/write-concise-web-tests-with-selenide-for-java-projects/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/write-concise-web-tests-with-selenide)) * [Test Your Spring MVC Controller with the WebTestClient and MockMvc](https://rieckpil.de/test-your-spring-mvc-controller-with-webtestclient-against-mockmvc/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-mockmvc-with-webtestclient)) * [Test Your Spring Boot JPA Persistence Layer With @DataJpaTest](https://rieckpil.de/test-your-spring-boot-jpa-persistence-layer-with-datajpatest/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-datajpatest)) * [Override Spring Boot Configuration Properties For Tests](https://rieckpil.de/override-spring-boot-configuration-properties-for-tests/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-override-test-properties)) * [Use GreenMail For Spring Mail (JavaMailSender) JUnit 5 Integration Tests](https://rieckpil.de/use-greenmail-for-spring-mail-javamailsender-junit-5-integration-tests/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-test-mail-sending)) * [Write Spring Boot integration tests with Testcontainers (JUnit 4 and 5)](https://rieckpil.de/howto-write-spring-boot-integration-tests-with-a-real-database/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-integration-tests-testcontainers)) * [Reuse containers with Testcontainers for fast integration tests](https://rieckpil.de/reuse-containers-with-testcontainers-for-fast-integration-tests/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/testcontainers-reuse-existing-containers)) * [Test Spring WebClient with MockWebServer from OkHttp](https://rieckpil.de/test-spring-webclient-with-mockwebserver-from-okhttp/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-web-client-testing-with-mockwebserver)) * [Test Spring applications using AWS with Testcontainers and LocalStack](https://rieckpil.de/test-spring-applications-using-aws-with-testcontainers-and-localstack/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-aws-integration-tests)) * [Write integration tests for your Spring WebSocket endpoints](https://rieckpil.de/write-integration-tests-for-your-spring-websocket-endpoints/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-websocket-integration-tests)) * [Improve build times with Context Caching from Spring Test](https://rieckpil.de/improve-build-times-with-context-caching-from-spring-test/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/)) * [Testing Spring Boot Applications with Kotlin and Testcontainers](https://rieckpil.de/testing-spring-boot-applications-with-kotlin-and-testcontainers/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-kotlin-testcontainers)) * [Write JPA integration tests with Java EE](https://rieckpil.de/howto-jpa-integration-tests-with-java-ee/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/jpa-integration-tests-java-ee)) * [Simple load-testing with Apache Benchmark](https://rieckpil.de/howto-simple-load-testing-with-apache-benchmark/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/load-testing-your-application)) * [Java Benchmarking with JMH (Java Microbenchmark Harness)](https://rieckpil.de/howto-java-benchmarking-with-jmh-java-microbenchmark-harness/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/java-benchmarking-with-jmh)) * [Consumer-Driven Contracts with Spring Cloud Contract](https://rieckpil.de/howto-consumer-driven-contracts-with-spring-cloud-contract/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/consumer-driven-contracts-with-spring-cloud-contract)) * [Jakarta EE integration tests with MicroShed Testing](https://rieckpil.de/jakarta-ee-integration-tests-with-microshed-testing/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/review-microshed-testing)) * [Spring Boot Integration Tests with WireMock and JUnit 5](https://rieckpil.de/spring-boot-integration-tests-with-wiremock-and-junit-5/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-integration-tests-wiremock)) * [Spring WebTestClient for efficient testing of your REST API](https://rieckpil.de/spring-webtestclient-for-efficient-testing-of-your-rest-api/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-web-test-client)) * [Spring Boot Functional Tests with Selenium and Testcontainers](https://rieckpil.de/spring-boot-functional-tests-with-selenium-and-testcontainers/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-selenium-integration-tests)) * [Testing your Spring RestTemplate with @RestClientTest](https://rieckpil.de/testing-your-spring-resttemplate-with-restclienttest/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/testing-spring-rest-template)) * [Five JUnit 5 features you might not know yet](https://rieckpil.de/five-junit-5-features-you-might-not-know-yet/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/five-unknown-junit-5-features)) * [Testing your JSON serialization with @JsonTest](https://rieckpil.de/testing-your-json-serialization-with-jsontest) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/testing-json-serialization-spring)) ## Articles about Spring Boot * [Lock @Scheduled Tasks With ShedLock And Spring Boot](https://rieckpil.de/lock-scheduled-tasks-with-shedlock-and-spring-boot/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-shedlock)) * [Best Practices Flyway and Hibernate with Spring Boot](https://rieckpil.de/howto-best-practices-for-flyway-and-hibernate-with-spring-boot/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-hibernate-flyway-best-practices)) * [Up- and download files with React and Spring Boot](https://rieckpil.de/howto-up-and-download-files-with-react-and-spring-boot/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-uploading-and-downloading-files-with-react)) * [Expose git information with Spring Boot’s Actuator](https://rieckpil.de/howto-expose-git-information-with-spring-boots-actuator/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/expose-git-information-actuator)) * [Lazy Loading of JPA attributes with Hibernate](https://rieckpil.de/how-to-lazy-loading-of-jpa-attributes-with-hibernate/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/lazy-loading-of-jpa-attributes-with-hibernate)) * [Send E-Mails with SendGrid and Spring Boot](https://rieckpil.de/howto-send-e-mails-with-sendgrid-and-spring-boot/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/send-emails-with-sendgrid-and-spring-boot)) * [Dynamic SQL Querying & Pagination with Querydsl and Spring Data JPA](https://rieckpil.de/howto-dynamic-sql-querying-pagination-with-querydsl-and-spring-data-jpa) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/dynamic-sql-querying-with-pagination)) * [Remote Debug Spring Boot applications (IntelliJ IDEA + Eclipse)](https://rieckpil.de/howto-remote-debug-spring-boot-applications-intellij-idea-eclipse/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/remote-debugging-spring-boot-application)) * [Use Spring’s WebClient for RESTful communication](https://rieckpil.de/howto-use-springs-webclient-for-restful-communication/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-web-client-demo)) * [Generate random data in Java using Java Faker](https://rieckpil.de/howto-generate-random-data-in-java-using-java-faker/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/random-data-in-java-using-java-faker)) * [Feature Toggles for Spring Boot applications with Togglz](https://rieckpil.de/howto-feature-toggles-for-spring-boot-applications-with-togglz/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-feature-toggles-with-togglz)) * [Spring WebClient OAuth2 Integration for Spring WebFlux](https://rieckpil.de/spring-webclient-oauth2-integration-using-github-as-an-example/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-web-client-oauth2-reactive-stack)) * [Spring WebClient OAuth2 Integration for Spring Web (Servlet)](https://rieckpil.de/spring-webclient-oauth2-integration-for-spring-web-servlet/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-web-client-oauth2-servlet-stack)) * [Expose Metrics of Spring WebClient using Spring Boot Actuator](https://rieckpil.de/expose-metrics-of-spring-webclient-using-spring-boot-actuator) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-web-client-expose-metrics)) * [Spring WebClient exchange vs. retireve a comparison](https://rieckpil.de/spring-webclient-exchange-vs-retrieve-a-comparison/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-web-client-exchange-retrieve)) * [Customize Spring WebClient with WebClientCustomizer](https://rieckpil.de/customize-spring-webclient-with-webclientcustomizer/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-web-client-customizing)) ## Articles about AWS * [AWS Lambda with Kotlin and Spring Cloud Function](https://rieckpil.de/aws-lambda-with-kotlin-and-spring-cloud-function/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/serverless-java-aws-examples/spring-cloud-function-kotlin-aws)) * [OIDC Logout With AWS Cognito and Spring Security](https://rieckpil.de/oidc-logout-with-aws-cognito-and-spring-security/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-security-aws-cognito-thymeleaf)) * [Java AWS Lambda Container Image Support (Complete Guide)](https://rieckpil.de/java-aws-lambda-container-image-support-complete-guide/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/serverless-java-aws-examples/java-aws-lambda-custom-image)) * [Resolving Spring Boot properties using the AWS Parameter Store (SSM)](https://rieckpil.de/resolving-spring-boot-properties-using-the-aws-parameter-store-ssm/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-aws-ssm-parameter-resolving)) * [Java AWS Lambda with Serverless and Maven - Thumbnail Generator](http://rieckpil.de/aws-lambda-with-serverless-java-and-maven-thumbnail-generator) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/serverless-java-aws-examples/thumbnail-generator)) * [Java AWS Lambda with Spring Cloud Function](https://rieckpil.de/java-aws-lambda-with-spring-cloud-function/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/serverless-java-aws-examples/spring-cloud-function-aws)) * [Thymeleaf OAuth2 Login with Spring Security and AWS Cognito](https://rieckpil.de/thymeleaf-oauth2-login-with-spring-security-and-aws-cognito/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-security-aws-cognito-thymeleaf)) ## Articles about Kotlin * [Create Spring Boot applications with Maven and Kotlin](https://rieckpil.de/create-spring-boot-applications-with-maven-and-kotlin/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-with-kotlin)) * [Write Java EE applications with Kotlin](https://rieckpil.de/howto-write-java-ee-applications-with-kotlin/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/java-ee-with-kotlin)) * [Writing JavaScript code with Kotlin using Gradle](https://rieckpil.de/writing-javascript-code-with-kotlin-using-gradle/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/kotlin-javascript-transpiling-gradle)) ## Articles about Java EE/Jakarta EE/MicroProfile * [Avoid repeating attributes in JPA entities](https://rieckpil.de/howto-avoid-repeating-attributes-in-jpa-entities/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/avoid-repeating-attributes-in-jpa-entities)) * [Deploy a Spring Boot Uber-Jar application within Open Liberty](https://rieckpil.de/howto-run-spring-boot-uber-jar-application-within-open-liberty/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/spring-boot-with-open-liberty/)) * [Simple CRUD table with JSF and PrimeFaces](https://rieckpil.de/howto-simple-crud-table-with-jsf-2-3-and-primefaces/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/simple-crud-table-with-jsf-and-primefaces)) * [Simple JSF 2.3 Login with Java EE 8 Security API](https://rieckpil.de/howto-simple-form-based-authentication-for-jsf-2-3-with-java-ee-8-security-api/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/jsf-simple-login-with-java-ee-security-api)) * [Simple JMS application with the embedded messaging engine in Open Liberty](https://rieckpil.de/howto-simple-jms-application-with-the-embedded-messaging-engine-in-open-liberty/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/embedded-messaging-engine-open-liberty)) * [JAX-RS user-based API rate-limiting with JSR-375](https://rieckpil.de/howto-jax-rs-user-based-rate-limiting-with-jsr-375/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/jax-rs-api-rate-limiting-with-jsr-375)) * [Generate documents from Word templates with Docx4j on Wildfly 14](https://rieckpil.de/howto-generate-documents-from-word-templates-with-docx4j-on-wildfly-14/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/generate-documents-from-word-templates-with-docx4j-on-wildfly14)) * [MicroProfile JWT Authentication with Keycloak and React](https://rieckpil.de/howto-microprofile-jwt-authentication-with-keycloak-and-react/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/microprofile-jwt-keycloak-auth)) * [Generate PDFs (Apache PDFBox) including Charts (XChart) with Java EE](https://rieckpil.de/howto-generate-pdfs-apache-pdfbox-including-charts-xchart-with-java-ee/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/charts-in-pdf-java-ee)) * [Up- and downloading files with Java EE and Web Components](https://rieckpil.de/howto-up-and-download-files-with-java-ee-and-web-components/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/java-ee-uploading-and-downloading-files-with-web-components)) * [RESTEasy (WildFly) file up- and downloading](https://rieckpil.de/howto-resteasy-wildfly-jax-rs-2-1-file-up-and-downloading/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/rest-easy-file-uploading-and-downloading)) * [Messaging with JMS using Payara with embedded OpenMQ broker](https://rieckpil.de/howto-messaging-with-jms-using-payara-with-embedded-openmq-broker/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/messaging-with-jms-using-payara)) * [Nice-looking JSF 2.3 apps with PrimeFaces 7.0](https://rieckpil.de/howto-create-nice-looking-jsf-2-3-applications-with-primefaces-7-0) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/nice-looking-jsf-apps-with-prime-faces-7)) * [Send emails with Java EE using Payara](https://rieckpil.de/howto-send-emails-with-java-ee-using-payara) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/java-ee-sending-mails)) * [Deploy Java EE applications to Kubernetes](https://rieckpil.de/howto-deploy-java-ee-applications-to-kubernetes) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/java-ee-kubernetes-deployment)) * [MicroProfile Rest Client for RESTful communication](https://rieckpil.de/howto-microprofile-rest-client-for-restful-communication/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/microprofile-rest-client-for-restful-communication)) * [Intercept method calls using CDI interceptors](https://rieckpil.de/howto-intercept-method-calls-using-cdi-interceptors/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/intercept-methods-with-cdi-interceptors)) * [Bootstrap your first Jakarta EE 8 application](https://rieckpil.de/howto-bootstrap-your-first-jakarta-ee-8-application/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/bootstrap-jakarta-ee-8-application)) * [Jakarta EE and MicroProfile applications with React and PostgreSQL](https://rieckpil.de/jakarta-ee-and-microprofile-applications-with-react-and-postgresql) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/guide-to-jakarta-ee-with-react-and-postgresql)) * [Create real-time applications with Jakarta EE WebSocket](https://rieckpil.de/create-real-time-applications-with-jakarta-ee-websocket/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/websockets-with-jakarta-ee)) * [Jakarta EE & React file up- and download using Java 11 and TypeScript](https://rieckpil.de/jakarta-ee-react-file-up-and-download-using-java-11-and-typescript) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/jakarta-ee-react-file-handling)) ## Miscellaneous * [Automatic Java Code Migration with OpenRewrite (Mockito Example)](https://rieckpil.de/automatic-java-code-migration-with-openrewrite-mockito-example) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/open-rewrite-example)) * [Simple database documentation with SchemaSpy](https://rieckpil.de/howto-simple-database-documentation-with-schemaspy/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/simple-database-documentation-with-schema-spy)) * [Preview PDF files with React](https://rieckpil.de/howto-pdf-preview-with-react/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/pdf-preview-react)) * [Writing PostgreSQL functions with Java using PL/Java](https://rieckpil.de/howto-writing-postgresql-functions-with-java-using-pl-java/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/running-java-within-postgres)) * [Deploy a React application to Kuberntes](https://dev.to/rieckpil/deploy-a-react-application-to-kubernetes-in-5-easy-steps-516j) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/react-app-kubernetes)) * [Create your own Maven Archetype in 5 simple steps](https://rieckpil.de/create-your-own-maven-archetype-in-5-simple-steps/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/custom-maven-archetype)) * [GitHub Actions for Java - automate your Maven workflows](https://rieckpil.de/github-actions-for-java-automate-your-maven-workflows/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/github-actions-java-maven)) ## WHATIS? Articles * [JavaServer Faces. An introduction to JSF 2.3](https://rieckpil.de/whatis-java-server-faces-an-introduction-to-jsf-2-3/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/hello-world-jsf-2.3)) * [GraalVM - an introduction to the next level JVM](https://rieckpil.de/whatis-graalvm/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/graalvm-intro)) * [MicroProfile Config](https://rieckpil.de/whatis-eclipse-microprofile-config/) ([Sources](https://github.com/rieckpil/getting-started-with-eclipse-microprofile/tree/master/microprofile-config)) * [MicroProfile Fault Tolerance](https://rieckpil.de/whatis-eclipse-microprofile-fault-tolerance/) ([Sources](https://github.com/rieckpil/getting-started-with-eclipse-microprofile/tree/master/microprofile-fault-tolerance)) * [MicroProfile Metrics](https://rieckpil.de/whatis-eclipse-microprofile-metrics/) ([Sources](https://github.com/rieckpil/getting-started-with-eclipse-microprofile/tree/master/microprofile-metrics)) * [MicroProfile JWT Auth](https://rieckpil.de/whatis-eclipse-microprofile-jwt-auth/) ([Sources](https://github.com/rieckpil/getting-started-with-eclipse-microprofile/tree/master/microprofile-jwt-auth)) * [MicroProfile Rest Client](https://rieckpil.de/whatis-eclipse-microprofile-rest-client/) ([Sources](https://github.com/rieckpil/getting-started-with-eclipse-microprofile/tree/master/microprofile-rest-client)) * [MicroProfile OpenAPI](https://rieckpil.de/whatis-eclipse-microprofile-openapi/) ([Sources](https://github.com/rieckpil/getting-started-with-eclipse-microprofile/tree/master/microprofile-open-api)) * [MicroProfile OpenTracing](https://rieckpil.de/whatis-eclipse-microprofile-opentracing/) ([Sources](https://github.com/rieckpil/getting-started-with-eclipse-microprofile/tree/master/microprofile-open-tracing)) * [MicroProfile Health](https://rieckpil.de/whatis-eclipse-microprofile-health/) ([Sources](https://github.com/rieckpil/getting-started-with-eclipse-microprofile/tree/master/microprofile-health)) * [Contexts and Dependency Injection (CDI)](https://rieckpil.de/whatis-contexts-and-dependency-injection-cdi/) ([Sources](https://github.com/rieckpil/getting-started-with-eclipse-microprofile/tree/master/cdi)) * [Jakarta RESTful Web Services (JAX-RS)](https://rieckpil.de/whatis-jakarta-restful-web-services-jax-rs/) ([Sources](https://github.com/rieckpil/getting-started-with-eclipse-microprofile/tree/master/jax-rs)) * [JSON Binding (JSON-B)](https://rieckpil.de/whatis-json-binding-json-b/) ([Sources](https://github.com/rieckpil/getting-started-with-eclipse-microprofile/tree/master/json-b)) * [JSON Processing (JSON-P)](https://rieckpil.de/whatis-json-processing-json-p/) ([Sources](https://github.com/rieckpil/getting-started-with-eclipse-microprofile/tree/master/json-p)) ## REVIEW Articles * [What’s new in Spring Boot 2.1](https://rieckpil.de/review-whats-new-in-spring-boot-2-1/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/whats-new-in-spring-boot-2.1)) * [What's new in Spring Boot 2.2](https://rieckpil.de/review-whats-new-in-spring-boot-2-2/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/whats-new-in-spring-boot-2.2)) * [What's new in Spring Boot 2.3](https://rieckpil.de/whats-new-in-spring-boot-2-3/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/whats-new-in-spring-boot-2.3)) * [What's new in MicroProfile 3.1](https://rieckpil.de/review-whats-new-in-microprofile-3-1/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/whats-new-in-microprofile-3.1)) * [Improved Java/Jakarta EE productivity with Adam Bien’s WAD (Watch and Deploy)](https://rieckpil.de/review-improved-java-jakarta-ee-productivity-with-adam-biens-wad-watch-and-deploy/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/improved-java-ee-productivity-with-wad)) * [5 Java 9 Features you might not know yet](https://rieckpil.de/review-5-java-9-features-you-might-not-know-yet/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/five-java-9-features)) * [Top 3 Maven Plugins to ensure Quality and Security for your project](https://rieckpil.de/top-3-maven-plugins-to-ensure-quality-and-security-for-your-project/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/maven-plugins-to-ensure-quality)) * [Joyful Open Liberty Developer Experience with Liberty Maven Plugin](https://rieckpil.de/joyful-open-liberty-developer-experience-with-liberty-maven-plugin/) ([Sources](https://github.com/rieckpil/blog-tutorials/tree/master/open-liberty-maven-plugin-review))
0
graphql-java/tutorials
null
null
# Book details tutorial example This repository contains the source code for the tutorial "Getting started with GraphQL Java and Spring Boot" which is available here: https://www.graphql-java.com/tutorials/getting-started-with-spring-boot/
0