curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
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
{ | |
// 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", |
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
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" |
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
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 |
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
#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 { |
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
#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()); |
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
BasedOnStyle: LLVM | |
IndentWidth: 2 | |
ColumnLimit: 80 |