The following operators are available.
Operator | Description |
---|---|
+ | Adds two operands |
#!/bin/bash | |
########## | |
# contents | |
########## | |
# contents | |
# notes | |
# script setup | |
# git config files |
ipconfig /release | |
ipconfig /all | |
ipconfig /flushdns | |
ipconfig /renew | |
netsh int ip set dns | |
netsh winsock reset |
using System; | |
using System.Data.SQLite; | |
using NPoco; | |
using NPoco.FluentMappings; | |
namespace NpocoSqlite | |
{ | |
/* | |
CREATE TABLE [TestMe]( | |
[MySuperID] INTEGER PRIMARY KEY NOT NULL, |
# install openjdk | |
sudo apt-get install openjdk-7-jdk | |
# download android sdk | |
wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz | |
tar -xvf android-sdk_r24.2-linux.tgz | |
cd android-sdk-linux/tools | |
# install all sdk packages |
using System; | |
using System.Collections.Generic; | |
using Castle.MicroKernel.Registration; | |
using Castle.Windsor; | |
namespace ConsoleApplication6 | |
{ | |
public class Message | |
{ | |
} |
using System; | |
using System.Diagnostics; | |
using System.Linq; | |
using StackExchange.Redis; | |
namespace ConsoleApplicationRedis | |
{ | |
internal class Program | |
{ | |
private static void Main(string[] args) |
using System; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace ConsoleApplication2 | |
{ | |
internal class Program | |
{ | |
private static void Main(string[] args) | |
{ |