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
CREATE PROCEDURE [dbo].[LongPrint] | |
@String NVARCHAR(MAX) | |
AS | |
/* | |
Example: | |
exec LongPrint @string = | |
'This String |
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
### 1. Clone your fork: | |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git | |
### 2. Add remote from original repository in your forked repository: | |
cd into/cloned/fork-repo | |
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git | |
git fetch upstream |
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
"date","total","disease","wounds","other" | |
"4/1854","8571","1","0","5" | |
"5/1854","23333","12","0","9" | |
"6/1854","28333","11","0","6" | |
"7/1854","28772","359","0","23" | |
"8/1854","30246","828","1","30" | |
"9/1854","30290","788","81","70" | |
"10/1854","30643","503","132","128" | |
"11/1854","29736","844","287","106" | |
"12/1854","32779","1725","114","131" |
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
{ | |
"mcorreafdez": { | |
"lang": "", | |
"favourites_count": "", | |
"name": "", | |
"friends_count": "", | |
"friends_list": { | |
"EmprendeMadres": { | |
"lang": "es", | |
"favourites_count": 41, |
This file has been truncated, but you can view the full file.
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
/******/ (function(modules) { // webpackBootstrap | |
/******/ // The module cache | |
/******/ var installedModules = {}; | |
/******/ | |
/******/ // The require function | |
/******/ function __webpack_require__(moduleId) { | |
/******/ | |
/******/ // Check if module is in cache | |
/******/ if(installedModules[moduleId]) | |
/******/ return installedModules[moduleId].exports; |