Thursday, May 21, 2015

Http 1.1 Chunked transfer.

If you inspect the http response with some zipped resources, you may find 2 things. I assure we are on HTTP 1.1. there is no content-length header ins the response, also the transfer-encoding is chunked.

image

and Http 1.1 have a full spec about the chunked encoding, check it here. http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.6

if you use node.js , we can write a simple test to try out the chunked transfer. here is the source code

image

and try pull the response using wget. you will notice the 3 seconds delay between Okay3 and 4.

image

and inspect the traffic in between, you can see the wirelevel bits

image

1st response returns Okay1

image

then the 2nd returns2 and 3

image

after 3 seconds delay

we get okay4

image

image

once we call the end , you can see the end trailer.

wireshark are smart enough, to tell you 4 frames invloved in this http req/res

image

Monday, May 18, 2015

Power-shell , Filter and Projection

To getstart with any command in PS, run help.

image

image

To filter it, use the where-object or use ? directly.

image

get running service

image

Or just using ? instead.

image

Using Select to run a projection, select name, status only

image

also, you can skip and tail the results

image

sellect last 5 only

image

convert the result to a Html page? using the convert*

image

to show it in a gridview

image

Friday, May 1, 2015

What's new in asp.net 5



updates for asp.net 4.6, web forms mvc5

roslyn support. .net compiler

roslen c# languae fature
var name="ss"
var messgage=$"this is a amessag  {name}"

Features

totally modular
>old days, all features on. now , you can turn on off , faster
>cloud support
>faster dev cycle. 2 seconds to compiler
>cross platform. run on mac, linux, windows
>faster. less memory



docs.asp.net
powerd by readthedocs, markdown syntax

readmedocs.org
1. turn on featues on and off, moduleer. can run on IoT

//like the nodejs
public void configure(IapplicationBuild app)
{

app.run(async (context)=>
{
await context.Response.WriteAsync("Hello World")
})
}


//add dependency .microsfot.aspnet.diagnostis

app.userErrorPage();

dnx . web //start the app

//not static handler by default. need add dependency
//add dependency
microsoft.aspnet.staticfiles

app.useStatiffiles (); // extension methods

2. roslyn engine
instead of compile cs to dll, then load it.
now load it in memory

DNX (Dontne Execution Environment)
4.5.1
5.0 core

old file have the csproj, inclue all files. cause merge issues.
now all fiels in the project

commands in package.json
like alias in npm

dnx . web  //run web command in the folder.

target framework
frameworks:{
dnx451:{}
dnxcore50:{}
}

bower support
>>>nuget not versioned

gulp support
task runner support (show gupp task)

>before build
>after build


publish the app to a disk and can run it directly. by run the web.command


3.Environment

<Environment names="Dev">

<link rel="stylesheet" href="cdnlink" asp-fall-back-ref="otherlinks">
</Environment>

model injection.
more html
<input asp-for="email" class="form-control"/>

used to be html.Textbox(m->m.Email, new {"classs=formcontrol"})

4. configuration.

new Configuration().addInifile() or addjson()



app.addUserSecretcs(), no connectionstring in web.config.
also for hosted on cloud, IT ops will asign those value

user-script //
user-script set AppSettings:SiteTitle "sec title"

5. controller

new ScrottController () , no need for base calss

public xxxController()
{

public string Index()
{
return "hello, index"
}
}

6.dotnet version manager
dnvm list
c:\users\currentuser\.dnx

7. mac

yo asp.net
dnu restore

dnx run kestrol
Mcirosfot.aspnet.serverhosting -server kestrol


8. run on rsp pi
kestrel








What's new in C# 6



Roslyn open source

  IDE Features (CTL+.)
  . lightball to remove unused namespace
    .. fix the scope , remove all unused cross the project / solutions
  . refactor
    rename, introduce local variable, show conflict
    add this automaticaly if their is conflict that could be resolved by IDE
  . Array vs ImmutableArray

  var c=new ImmutableArray(); call c.length will trigger null exception.
  //you can build code analyzer
  //tell the ide you shoudl you  ImmutableArray<int>.empty

language new features
  instead of big change, little things added.

  1.using static System.Console. //simar typescript import {WriteLine} from systemcnosole

    then you can call WriteLine methods.
  2.Immutable, auto property.
    public class Point
    {
      public int x {get;}
      public int y {get;}=default10;
    }
  3 lambda for methods
    public void string ToString()=>String.format("tostring {0}", x);

  4 $String,
    public void String toString()=>$({X}{Y})
  5. nameof(variable)
    Log.d(nameof(variable))
  6.?.
    if p!=null && p.name=="xxx"
    will be if p?.name=="xx"
    if json!=null && json['x']!=null && json['x']=="mon"
    will be
    if(json?['x']?=="mon")
  7.initlize elements
    public JObject tojson()=>return new jsonobject(){['x']=x, ['Y']=y }
  8. awit in catch block

    try
    {
    var result=await repo.DosomethingAsync();
    }
    catch(Excepton ex)
    {
      await repo.LogException(ex) //doable now
    }

  9.catch(Exception ex) when (ex.Occurences>3)


Debugging features
  1. you can edit code, even add new class , and do initialization code when debugging the app
    run linq query

    also in watch window
    people.find(p=>p.age>20)

  C# extensions toolkit in the extnsion gallery
  2. C# interactive window

      #r "System"
      #r "System.Core"
      using System.Diagnostics;
      using System.linq;
      var memoryPigs =from p in Process.getProcesses() where p.workset64 >64*1024*1024 select new
      {p.ProcessName, p.WorkingSet}
      foreach(var r in memopigs)
      {
      Console.writeline(r)7y
      }

 
Locations of visitors to this page