asp.net: huge difference between DataView.Table and DataView.ToTable

Both DataView.Table and DataView.ToTable return a DataTable from a DataView. The difference is that .Table gives you the underlying data, with no changes from the dataview’s sorting or filtering. ToTable on the other hand, gives you the data in the dataview after filtering and sorting! This is the sort of thing I’ve come to expect […]

Read more

ruby gotcha: exec command

Surprisingly small amount of documentation on the net about this…. When using the exec command, don’t expect any of your ruby code after it to execute! This is because the command you run using exec replaces the currently executing script! Use the system command instead, or the “ trick

Read more

top