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
#include <stdio.h> | |
void main(int argc, char[] argv) { | |
printf("hello, world!\n"); | |
} |
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 ServiceStack.OrmLite; | |
using System.IO; | |
namespace ormlitebug | |
{ | |
class MainClass | |
{ | |
public static void Main (string[] args) | |
{ |
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
#!/bin/bash | |
NET=10.0.0.0/16 | |
# i.e. 256Kbit/s | |
RATE_OUT=$1 | |
# i.e. 6Mbit/s | |
RATE_IN=$2 | |
DELAY_IN=$3 | |
DELAY_OUT=$4 |
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 ServiceStack.Text; | |
using ServiceStack.ServiceModel.Serialization; | |
using System.Runtime.Serialization; | |
namespace Test | |
{ | |
[DataContract] | |
public class MyClass | |
{ |
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
int main (void) | |
{ | |
printf ("hello world!"); | |
} |
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
int main (void) { | |
printf ("Hello world!"); | |
} |
NewerOlder