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
Beste klant van Allekabels, | |
Uw wachtwoord is gelekt bij een datalek en hebben wij om deze reden | |
gewist. Laten we beginnen om onze welgemeende excuses aan te bieden voor | |
eventuele overlast welke gepaard gaat met dit datalek en het feit dat | |
dit nu pas duidelijk is geworden. | |
Ons bedrijf is op 23 augustus 2020 slachtoffer geworden van een hack | |
door cybercriminelen en heeft daar meteen melding van gemaakt bij de | |
Autoriteit Persoonsgegevens en de technologische beveiliging maximaal |
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.Linq; | |
using System.Runtime.InteropServices; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Timers; | |
namespace ConsoleApplication6 | |
{ |
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
// POST | |
public FileContentResult GenerateCsvDownload(FormCollection formCollection) | |
{ | |
string csv = Request.Form["csv"]; | |
return File(Encoding.UTF8.GetBytes(csv), "text/plain", "csv.txt"); | |
} |
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
Highcharts.getOptions().exporting.buttons.exportButton.menuItems.push({ | |
text: 'Download CSV', | |
onclick: function () { | |
Highcharts.post('http://www.highcharts.com/studies/csv-export/csv.php', { | |
csv: this.getCSV() | |
}); | |
} | |
}); |
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 | |
/** | |
* DISCLAIMER: Don't use www.highcharts.com/studies/csv-export/csv.php in | |
* production! This file may be removed at any time. | |
*/ | |
$csv = $_POST['csv']; | |
if ($csv) { | |
header('Content-type: text/csv'); | |
header('Content-disposition: attachment;filename=chart.csv'); | |
echo $csv; |
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
public class ValuesController1 : ApiController | |
{ | |
// POST api/<controller> | |
public void Post([FromBody]string value) | |
{ | |
HostingEnvironment.QueueBackgroundWorkItem(ct => StartBackgroundTask()); | |
} | |
private async Task StartBackgroundTask() | |
{ |
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
[merge] | |
tool = p4merge | |
log = true | |
[user] | |
name = | |
email = | |
[core] | |
editor = vim | |
autocrlf = true | |
safecrlf = false |
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
D:\Data\Projects\foo>git checkout master | |
D:\Data\Projects\foo>git push dropbox master |
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
D:\My Dropbox\Git repos>cd \data\projects\foo | |
D:\Data\Projects\foo>git remote add dropbox "D:\My Dropbox\Git repos\foo.git" |
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
D:\My Dropbox\Git repos>git clone d:\data\projects\foo --bare |
NewerOlder