How to install CUDA & cuDNN on Ubuntu 22.04
Install NVIDIA drivers
Update & upgrade
sudo apt update && sudo apt upgradesudo apt update && sudo apt upgradehttps://www.nerdfonts.com/font-downloads
The following solution thanks to @hackerzgz & @snacky101 will install all nerd fonts;
brew tap homebrew/cask-fonts
brew search '/font-.*-nerd-font/' | awk '{ print $1 }' | xargs -I{} brew install --cask {} || true| #pragma once | |
| #include "Application.h" | |
| #include <Renderer2D.h> | |
| class WaifuRPG_Application : public aie::Application | |
| { | |
| public: | |
| WaifuRPG_Application(); | |
| virtual ~WaifuRPG_Application(); | |
| bool startup() override; |
| <!DOCTYPE NETSCAPE-Bookmark-file-1> | |
| <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> | |
| <!-- This is an automatically generated file. | |
| It will be read and overwritten. | |
| Do Not Edit! --> | |
| <TITLE>Bookmarks</TITLE> | |
| <H1>Bookmarks</H1> | |
| <DL><p> | |
| <DT><A HREF="https://developer.apple.com/library/mac/releasenotes/InterapplicationCommunication/RN-JavaScriptForAutomation/index.html#//apple_ref/doc/-%20uid/TP40014508" ADD_DATE="1414706885" PRIVATE="0" TAGS="javascript,mac,osx,yosemite">JavaScript for Automation Release Notes</A> | |
| <DD>This article describes JavaScript for Automation, a new feature in OS X Yosemite. |
| title | subtitle | author | date | source |
|---|---|---|---|---|
Docker Compose Cheatsheet |
Quick reference for Docker Compose commands and config files |
Jon LaBelle |
April 7, 2019 |
| namespace MemberAccessors | |
| { | |
| using System.Collections.Concurrent; | |
| using System.Linq.Expressions; | |
| using System.Reflection; | |
| #nullable enable | |
| /// <summary> | |
| /// A helper class for accessing fields and properties of an object in a performant way. | |
| /// </summary> | |
| public class MemberAccessor<T> |
Latest News: http://site.api.espn.com/apis/site/v2/sports/football/college-football/news
Latest Scores: http://site.api.espn.com/apis/site/v2/sports/football/college-football/scoreboard
| """ | |
| Classic cart-pole system implemented by Rich Sutton et al. | |
| Copied from http://incompleteideas.net/sutton/book/code/pole.c | |
| permalink: https://perma.cc/C9ZM-652R | |
| Continuous version by Ian Danforth | |
| """ | |
| import math | |
| import gym |
| # A Monday preceding the first post on this blog. Used for calculating week numbers | |
| # (Weeks start on Mondays) | |
| FIRST_MONDAY = date(2000, 2, 14) | |
| # Calculate week_number and streak_weeks for every post, in order. For calculating today's | |
| # streak, we only need to know about the most recent post, but there's a certain amount of | |
| # looking at other posts to figure that out. | |
| # Note: this code looks at *all* posts because I want to calculate all streaks. For just | |
| # today's streak, a quicker algorithm would run in reverse chronological order and stop at | |
| # the first break. |