Book "LINQ in Action" by Fabrice Marguerie
LINQ, Language INtegrated Query, is a new extension to the Visual Basic and C# programming languages designed to simplify data queries and database interaction. It addreses O/R mapping issues by making query operations like SQL statements part of the programming language. It also offers built-in support for querying in-memory collections like arrays or lists, XML, DataSets, and relational databases.
LINQ in Action is a fast-paced, comprehensive tutorial for professional developers. This book explores what can be done with LINQ, shows how it works in an application, and addresses the emerging best practices. It presents the general purpose query facilities offered by LINQ in the upcoming C# 3.0 and VB.NET 9.0 languages. A running example introduces basic LINQ concepts. You'll then learn to query unstructured data using LINQ to XML and relational data with LINQ to SQL. Finally, you'll see how to extend LINQ for custom applications.
LINQ in Action will guide you along as you explore this new world of lambda expressions, query operators, and expression trees. As well, you'll explore the new features of C# 3.0, VB.NET 9.0. The book is very practical, anchoring each new idea with running code. Whether you want to use LINQ to query objects, XML documents, or relational databases, you will find all the information you need to get started
But LINQ in Action does not stop at the basic code. This book also shows you how LINQ can be used for advanced processing of data, including coverage of LINQ's extensibility, which allows querying more data sources than those supported by default. All code samples are built on a concrete business case. The running example, LinqBooks, is a personal book cataloging system that shows you how to create LINQ applications with Visual Studio 2008 and above.
SoftwareDistribution folder is huge on small drive
Windows cleans SoftwareDistribution directory automatically after updates are installed.
The directory was 1GB big after updates on 20GB partition and the reason was \softwaredistribution\datastore\datastore.edb file.
Forums says just delete the whole folder. Don't do it!
datastore.edb is Extensible Storage Engine (ESE) database and you can shrink it.
Launch cmd.exe as as administrator and execute
After defragmentation the file was reduced upto 10MB. Wow! I got free space on the disk.
Enjoy!
The directory was 1GB big after updates on 20GB partition and the reason was \softwaredistribution\datastore\datastore.edb file.
Forums says just delete the whole folder. Don't do it!
datastore.edb is Extensible Storage Engine (ESE) database and you can shrink it.
Launch cmd.exe as as administrator and execute
net stop wuauserv esentutl /d %windir%\softwaredistribution\datastore\datastore.edb net start wuauserv
After defragmentation the file was reduced upto 10MB. Wow! I got free space on the disk.
Enjoy!
Certificate Credentials - Generate Proxy Class
Below you will find my workaround for proxy class generation if remote web service is old-fashioned and protected with certificate credentials.
Often is enough svcutil.exe to generate proxy class. But not in my case because web service was ancient and does not provide MEX, WS or netTcp binding. Please advise whether is possible to use svcutil for archaic service like https://remote.com/service?wsdl
Another way to create proxy class is wsdl.exe utility, but wsdl.exe does not support certificates at all.
Solution: I have installed locally http NGINX revers proxy with following config
to convert a PKCS#12 file (.pfx .p12) containing a private key and certificates to PEM file execute
start Nginx and execute wsdl.exe command
Enjoy!
Often is enough svcutil.exe to generate proxy class. But not in my case because web service was ancient and does not provide MEX, WS or netTcp binding. Please advise whether is possible to use svcutil for archaic service like https://remote.com/service?wsdl
Another way to create proxy class is wsdl.exe utility, but wsdl.exe does not support certificates at all.
Solution: I have installed locally http NGINX revers proxy with following config
server {
listen 8080;
server_name localhost;
location / {
#repace urls in response
sub_filter 'https://remote.com:8080/' 'http://$host:8080/';
sub_filter_types *; # enable all type
sub_filter_once off;
proxy_pass https://remote.com:8080/;
proxy_ssl_certificate cert.pem;
proxy_ssl_certificate_key cert.pem;
}
}
to convert a PKCS#12 file (.pfx .p12) containing a private key and certificates to PEM file execute
openssl pkcs12 -in keyStore.pfx -out keyStore.pem -nodes
start Nginx and execute wsdl.exe command
wsdl.exe http://localhost:8080/service?wsdl
Enjoy!
How to REALLY destroy stored data
I have written already about SDelete and bootable DiskWipe, but what if you have to rely on the result?
In that case you have only once option - physical destruction!
First you have to disassemble your hard drive disk and extract each single platter.
As next step use blow torch (blowlamp) till surface of disk will be red, look at the photo.
After that all your data are really demolished.
CAUTION! That is truly very dangerous! Fire hazard!
In that case you have only once option - physical destruction!
First you have to disassemble your hard drive disk and extract each single platter.
As next step use blow torch (blowlamp) till surface of disk will be red, look at the photo.
After that all your data are really demolished.
CAUTION! That is truly very dangerous! Fire hazard!
bulk convert to u-law or a-law audio format
The telephone system requires often audio prompts in u-law or a-law format.
To convert all your wav files you can execute following command in the directory with wav files,
it will convert file and save it with the same file name and new extension
# for a in *.wav; do sox "$a" -t raw -r 8000 -c 1 -e u-law ${a/.wav/.ulaw} ; done
or
# for a in *.wav; do sox "$a" -t raw -r 8000 -c 1 -e a-law ${a/.wav/.alaw} ; done
Enjoy!
Connecting to Ubuntu using UltraVNC
first enable Desktop Sharing on Ubuntu 16.04 host
and protect it with password.
Ubuntu is running Vino VNC Server and UltraVNC does not support Vino encryption. You have to execute without restart and sudo(!) the followinf command
$ gsettings set org.gnome.Vino require-encryption false
Enjoy!
PS: I did not test the settings with TightVNC or RealVNC, but expecting also to be working solution
Aspose.Cells change style of cell
It was possible in previous versions of Aspose Cells to apply changes directly to cell.
Starting from version 7.0 you have to call first GetStyle() method and then call SetStyle(s) method.
You can use simple extension method to mimic old behavior.
and now to fill A1 cell with green background you can execute just single line
Enjoy!
Starting from version 7.0 you have to call first GetStyle() method and then call SetStyle(s) method.
You can use simple extension method to mimic old behavior.
public static class AsposeCellsExt
{
public static void ChangeStyle(this Cell cell, Action<Style> applyChangesTo)
{
Style s = cell.GetStyle();
applyChangesTo(s);
cell.SetStyle(s);
}
}
and now to fill A1 cell with green background you can execute just single line
cells[0, 0].ChangeStyle(s => { s.ForegroundColor = GREEN; s.Pattern = Aspose.Cells.BackgroundType.Solid; });
Enjoy!
Subscribe to:
Posts (Atom)
Asterisk AST_SORCERY function
AST_SORCERY gets a field from a sorcery object. Sorcery is always created for PJSIP aors, endpoints and identifies in asterisk. It allows y...
-
OUT - OF - DATE Obsolete. Please check new post ! If you have issue with Function List plugin for Notepad++ 5.1 or later, please ch...
-
If your worry about data left on dedicated/hosted root server and want to remove secure all files and bits, you can clean complete disk sli...
-
Starting from version 6.4.1 Notepad++ doesn't use plugging FunctionList any more, because it's now built-in feature. I have copied s...


