Id generator.
yarn add gist:14b0e71326d41620ca3957e850f4b05f
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"runtimeExecutable": "/usr/bin/chromium", | |
"type": "chrome", | |
"request": "launch", |
https://answers.microsoft.com/en-us/windows/forum/all/force-output-to-headphone-jack/ad31a6f8-0465-4ae3-9d48-0e389dff9ada | |
https://superuser.com/questions/804048/how-do-i-force-audio-to-play-through-headphone-jack | |
https://www.google.com/search?newwindow=1&sxsrf=ACYBGNS_94c1xJXDTCZBtGRfqeVDJJx76Q%3A1578322322842&ei=kkkTXrv5MojurgScows&q=windows+10+force+headphones&oq=windows+force+hea&gs_l=psy-ab.1.1.0i203j0i22i30l4.23507.26674..29997...0.1..0.605.2107.0j6j1j1j0j1......0....1..gws-wiz.......0i71j0.c8dfx1W_S54 | |
windows 10 force headphones | |
"C:\Users\Пользователь\Downloads\_lol\Riot Games\League of Legends\LeagueClient.exe" |
from Tkinter import * | |
import math | |
def draw_sin(a1, a2): | |
c.delete("all") | |
center = height//2 | |
x_start = a1 | |
x_max = width | |
x_increment = 1 | |
x_factor = (a2 - a1) / 400 |
#include <iostream> | |
#include <exception> | |
#include <SDL.h> | |
using namespace std; | |
class Exception : public exception { | |
string msg; | |
public: | |
Exception(string amsg) : msg(amsg) {} | |
const char* what() const noexcept { |
#include <SDL.h> | |
#include <SDL_net.h> | |
#include <cstdio> | |
#include <cstring> | |
#include <iostream> | |
using namespace std; | |
int main(int argc, char **argv) { | |
if (SDL_Init(0) == -1) { | |
printf("SDL_Init: %s\n", SDL_GetError()); |
BasedOnStyle: LLVM | |
IndentWidth: 2 | |
ColumnLimit: 80 |
#include <iostream> | |
using namespace std; | |
class Base { | |
int propertyBase; | |
public: | |
template<class T> | |
T& setPropertyBase(int propertyBase) { | |
this->propertyBase = propertyBase; | |
return *(T*)this; |