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
Show hidden characters
{ | |
"C++ Competitive Programming Snippet": { | |
"prefix": "cpp-compro", | |
"body": [ | |
"#pragma GCC optimize(\"Ofast\")", | |
"#pragma GCC target(\"sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,fma\")", | |
"#pragma GCC optimize(\"unroll-loops\")", | |
"#include <bits/stdc++.h> ", | |
"#include <complex>", | |
"#include <queue>", |
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
<!doctype html> | |
<html> | |
<head> | |
<title>Markdown Tag Insertion</title> | |
<script language="javascript" type="text/javascript" src="script.js"></script> | |
</head> | |
<body> | |
</br> | |
<input type="text" id="title" style="width:250px;height:35px;"> | |
</br> |
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
<?php | |
/** | |
* Convert a comma separated file or csv string into an associated array. | |
* The first row should contain the array keys. | |
* | |
* Example: | |
* | |
* @param string $src Path to the CSV file or Raw text string in case of $is_file = false | |
* @param boolean $is_file true if $src is Filepath, false if $src is raw string | |
* @param string $delimiter The separator used in the file or Raw string |