This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using Microsoft.Build.Evaluation; | |
| using Microsoft.Build.Construction; | |
| namespace SourceCombiner |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alabaster | |
| anaconda-client | |
| anaconda-navigator | |
| anaconda-project | |
| appnope | |
| appscript | |
| asn1crypto | |
| astroid | |
| astropy | |
| babel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const linkEl = document.createElement('link'); | |
| linkEl.rel = 'prefetch'; | |
| linkEl.href = urlWithYourPreciousData; | |
| document.head.appendChild(linkEl); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fetch(document.location.href) | |
| .then(resp => { | |
| const csp = resp.headers.get('Content-Security-Policy'); | |
| // does this exist? Is is any good? | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef __QUATERNION_INCLUDED__ | |
| #define __QUATERNION_INCLUDED__ | |
| #define QUATERNION_IDENTITY float4(0, 0, 0, 1) | |
| #ifndef PI | |
| #define PI 3.14159265359f | |
| #endif | |
| // Quaternion multiplication |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef __MATRIX_INCLUDED__ | |
| #define __MATRIX_INCLUDED__ | |
| #define IDENTITY_MATRIX float4x4(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) | |
| float4x4 inverse(float4x4 m) { | |
| float n11 = m[0][0], n12 = m[1][0], n13 = m[2][0], n14 = m[3][0]; | |
| float n21 = m[0][1], n22 = m[1][1], n23 = m[2][1], n24 = m[3][1]; | |
| float n31 = m[0][2], n32 = m[1][2], n33 = m[2][2], n34 = m[3][2]; | |
| float n41 = m[0][3], n42 = m[1][3], n43 = m[2][3], n44 = m[3][3]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Configuration | |
| const WAIT_OPEN_PLAYLIST_POPUP = 1000; | |
| const WAIT_AFTER_ADD_PLAYLIST = 1500; | |
| const TARGET_PLAYLIST_NAME = 'To Do'; | |
| // Should the new playlist be in reverse order? | |
| const REVERSE = false; | |
| // Should liked items be skipped? | |
| const SKIP_LIKED = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import tkinter as tk | |
| from tkinter import filedialog | |
| root = tk.Tk() | |
| root.withdraw() | |
| file = filedialog.askopenfilename() | |
| osu = open(file,'r+').readlines() | |
| out = {} | |
| sliders = ['C','L','P','B'] |