I hereby claim:
- I am pczajkowski on github.
- I am pczajkowski (https://keybase.io/pczajkowski) on keybase.
- I have a public key whose fingerprint is 661E A005 5FE5 39D5 5B06 2876 9AF4 CFB6 E475 1A47
To claim this, I am signing this object:
| namespace CSVHelperVsSep; | |
| public class Comparison | |
| { | |
| public string? Original; | |
| public string? Sep; | |
| public string? CsvHelper; | |
| } |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Xml; | |
| using System.Xml.Linq; | |
| namespace DuplicatesInTMX | |
| { | |
| class Program | |
| { |
| #define _GNU_SOURCE //asks stdio.h to include asprintf | |
| #include <archive.h> | |
| #include <archive_entry.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include "stopif.h" | |
| char* printFileSize(long int size){ | |
| char *fileSize; |
| /* | |
| csvtest - reads CSV data from stdin and output properly formed equivalent | |
| useful for testing the library | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <errno.h> |
| constant "someID", "sourceText" | |
| translation | |
| constant "someOtherID", "otherSourceText | |
| which is multiline" | |
| another translation |
| const WIDTH = 8; | |
| const HEIGHT = 8; | |
| // https://www.coding-dojo-silesia.pl/golf | |
| function point_free(x, y, people) { | |
| const pLength = people.length; | |
| for (let i = 0; i < pLength; i++) { | |
| const person = people[i]; | |
| if (x === person.x && y === person.y) |
| const fs = require('fs'); | |
| const cheerio = require('cheerio'); | |
| const puppeteer = require('puppeteer'); | |
| let app = {}; | |
| app.parse = async function(data, elementSelector) { | |
| if (data.length === 0) { | |
| console.log("No data!"); | |
| return; | |
| } |
I hereby claim:
To claim this, I am signing this object:
| using System; | |
| using System.IO; | |
| using System.Linq; | |
| using PdfSharp.Pdf; | |
| using PdfSharp.Pdf.IO; | |
| namespace MergePDFs | |
| { | |
| internal class Program | |
| { |
| public string AppName | |
| { | |
| get | |
| { | |
| if (!string.IsNullOrEmpty(_appName)) | |
| return _appName; | |
| var name = System.Diagnostics.Process.GetCurrentProcess().ProcessName; | |
| if (string.IsNullOrEmpty(name)) | |
| throw new Exception("Can't establish app name!"); |