Skip to content

Instantly share code, notes, and snippets.

View Freddd13's full-sized avatar
🏠
Working from home

Hatori233 Freddd13

🏠
Working from home
  • Nagano
View GitHub Profile
How to Create Your YouTube API Credentials
https://vidible.zendesk.com/hc/en-us/articles/207036056-How-to-Create-Your-YouTube-API-Credentials
Creating your YouTube API Credentials is accomplished by performing to main stages:
Stage I - Creating a Google OAuth 2.0 Web application client.
Stage II - Creating a YouTube refresh token.
@Freddd13
Freddd13 / Eigen Cheat sheet
Created April 7, 2022 04:16 — forked from gocarlos/Eigen Cheat sheet
Cheat sheet for the linear algebra library Eigen: http://eigen.tuxfamily.org/
// A simple quickref for Eigen. Add anything that's missing.
// Main author: Keir Mierle
#include <Eigen/Dense>
Matrix<double, 3, 3> A; // Fixed rows and cols. Same as Matrix3d.
Matrix<double, 3, Dynamic> B; // Fixed rows, dynamic cols.
Matrix<double, Dynamic, Dynamic> C; // Full dynamic. Same as MatrixXd.
Matrix<double, 3, 3, RowMajor> E; // Row major; default is column-major.
Matrix3f P, Q, R; // 3x3 float matrix.
@Freddd13
Freddd13 / listen1_aha_playlist.md
Created August 29, 2020 04:51
updated by Listen1(http://listen1.github.io/listen1/) at 2020/8/29 下午12:51:50

本歌单由Listen1创建, 歌曲数:303,歌单数:3,点击查看更多

@Freddd13
Freddd13 / .Cloud.md
Created February 16, 2020 14:24 — forked from imba-tjd/.Cloud.md
一些免费的云资源

IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装;PaaS提供软件/框架(可以自己选);SaaS只能使用开发好的软件(卖软件本身);CaaS是使用docker容器的PaaS;BaaS一般是类似于非关系数据库,但各家不通用,有时还有一些其它东西。

集合:https://github.com/ripienaar/free-for-devhttps://github.com/qinghuaiorg/free-for-dev-zh

未分类的