- 2011 - A trip through the Graphics Pipeline 2011
- 2013 - Performance Optimization Guidelines and the GPU Architecture behind them
- 2015 - Life of a triangle - NVIDIA's logical pipeline
- 2015 - Render Hell 2.0
- 2016 - How bad are small triangles on GPU and why?
- 2017 - GPU Performance for Game Artists
- 2019 - Understanding the anatomy of GPUs using Pokémon
Discover gists
| using System; | |
| using System.Collections; | |
| using Animancer; | |
| using UnityEngine; | |
| namespace Util | |
| { | |
| [RequireComponent(typeof(AnimancerComponent))] | |
| public class BozoAnimancerBinder : MonoBehaviour | |
| { |
| /*** MIT LICENSE | |
| Copyright (c) 2022 torcado | |
| 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 |
** 由于此文年事已久,可能某些 URL Schemes 已失效,可在评论区留言指出!(最后更新于 2024.10.28)
由于苹果的各应用都是在沙盒中,不能够互相之间访问或共享数据。但是苹果还是给出了一个可以在 APP 之间跳转的方法:URL Scheme。简单的说,URL Scheme 就是一个可以让 APP 相互之间可以跳转的协议。每个 APP 的 URL Scheme 都是不一样的,如果存在一样的 URL Scheme,那么系统就会响应先安装那个 APP 的 URL Scheme,因为后安装的 APP 的 URL Scheme 被覆盖掉了,是不能被调用的。
| # Example file on how to configure the Bambu/Creality tag processors. | |
| [bambu_lab_tag_processor] | |
| key = 9A759CF2C4F7CAFF222CB9769B41BC96 | |
| [creality_tag_processor] | |
| key = 713362755e74316e71665a2870662431 | |
| encryption_key = 484043466b526e7a404b4174424a7032 | |
| [elegoo_tag_processor] |
These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.
| import React, { Component } from 'react'; | |
| import { Switch, Route } from 'react-router-dom'; | |
| import { Routes } from './config/routes'; | |
| import './App.css'; | |
| class App extends Component { | |
| render() { | |
| return ( | |
| <section> |
Last Updated: 2024-02-06
Git worktrees allow you to check out multiple branches simultaneously in separate directories, while sharing a single .git metadata store.
THere are some best practices, useful Git aliases, and shell functions for efficiently managing Git worktrees. It covers:
- Setting up Git aliases for worktree operations.
- Using shell functions for enhanced worktree management.