This file contains 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 static string ToBase64(string encode) { | |
Byte[] btByteArray = null; | |
System.Text.UTF8Encoding encoding = new System.Text.UTF8Encoding(); | |
btByteArray = encoding.GetBytes(encode); | |
string sResult = System.Convert.ToBase64String(btByteArray, 0, btByteArray.Length); | |
sResult = sResult.Replace("+", "-").Replace("/", "_"); | |
return sResult; | |
} | |
public static string FromBase64(string decode) { |
This file contains 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
/************************************************************************ | |
* | |
* Module: WINTIME.C | |
* | |
* System: Microsoft C 6.00A, Windows 3.00 | |
* | |
* Remarks: | |
* | |
* This module contains functions for managing time and date strings | |
* using internationalization. |
This file contains 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
/* | |
spit.c (C) KindelCo Software Systems, 1987, 1988 | |
SPIT - A print formatter for the PC | |
Author: Charles E. Kindel, Jr. (tigger) | |
Started: July 18, 1987 | |
Version: 1.53 |
This file contains 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
/* ez.c | |
ez.c (c) KindelCo Software Systems, 1987 | |
EZ - The tlw Screen Editor | |
Author: Charles E. Kindel, Jr. (tigger) | |
Started: July 17, 1987 |
This file contains 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
/* | |
compress.c (c) Charles E. Kindel, Jr., 1987 | |
COMPRESS - An ASCII file compress program | |
Author: Charles E. Kindel, Jr. (tigger) | |
Started: June 14, 1987 | |
Version: 2.0 |
This file contains 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
To graduate, yell at Dennis Ritchie for writing such a stupid | |
operating system, write my own, make tons of money, | |
and die. |
This file contains 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
private void toolStripButtonChooseText_Click(object sender, EventArgs e) | |
{ | |
Stream myStream = null; | |
OpenFileDialog openFileDialog = new OpenFileDialog(); | |
openFileDialog.InitialDirectory = "."; | |
openFileDialog.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*"; | |
openFileDialog.FilterIndex = 1; | |
openFileDialog.RestoreDirectory = false; |
This file contains 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
require('./bootstrap/bootstrap'); | |
const express = require('express'); | |
const auth = require('connect-auth'); | |
const config = require('./config'); | |
const ConnectCouchDB = require('connect-couchdb')(express); | |
const assetManager = require('connect-assetmanager'); | |
const assetHandler = require('connect-assetmanager-handlers'); | |
const port = config.keys.port; |
This file contains 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
echo chars:\u20AC| nc 192.168.0.5 5150 -w 1 |
This file contains 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
echo chars:\u20AC| nc.exe 192.168.0.5 5150 -w 1 |
OlderNewer