barenotecarossi.it
Bar Enoteca Rossi - Varazze - Home
http://www.barenotecarossi.it/index.php
Version: 2.7.0. Update: 11.05.04. 2005 Bar Enoteca Rossi. Via Cesare Battisti, 7. Welcome by the staff of Bar Enoteca Rossi. We are also on YouTube! Bar Rossi's YouTube channel is now live. Have you missed one of our parties? Are you curious to see what happened? Look for GiuspinVarazze YouTube channel and join us! Fiat "500" Car exhibit in Varazze. XIV Inter riviera Monaco Trophy for barmen. Martini Event - It's Carnival time once more 2011. Manuel at Bar Rossi - Summer 2011. Monaco's Fair - 2011.
dreamstatecoding.blogspot.com
Dreamstate Coding: December 2010
http://dreamstatecoding.blogspot.com/2010_12_01_archive.html
Tuesday, December 14, 2010. Decrypting SSL traffic with Wireshark: ssl load key: cant import pem data. One reason for the "ssl load key: can't import pem data" can be:. Open your PEM Key file. BEGIN RSA PRIVATE KEY- - -. END RSA PRIVATE KEY- - -. Occasionally you will end up with a key file in the following format, hence the "ssl load key: can't import pem data" error,. BEGIN PRIVATE KEY- - -. END PRIVATE KEY- - -. To convert it to the correct format that can be read by Wireshark you will need OpenSSL.
dreamstatecoding.blogspot.com
Dreamstate Coding: DateTime.Now vs DateTime.UtcNow
http://dreamstatecoding.blogspot.com/2013/03/datetimenow-vs-datetimeutcnow.html
Saturday, March 16, 2013. DateTime.Now vs DateTime.UtcNow. Please note that this post does not take into account any other perspective of when to use DateTime.Now or DateTime.UtcNow other than performance. This morning I tried to find numbers that compare DateTime.Now and DateTime.UtcNow but all I found was long discussions on the subject of when to use them. So I decided to write a quick sample myself to see. Last value was 2013-03-16 12:50:18. Last value was 2013-03-16 11:50:18. Iterations = 10000000;.
dreamstatecoding.blogspot.com
Dreamstate Coding: October 2011
http://dreamstatecoding.blogspot.com/2011_10_01_archive.html
Tuesday, October 11, 2011. Thread Pooling work items in C#. Sometimes you want to perform a work item in another thread but not go through the hassle to create a new thread. A good way to solve the problem is to use the ThreadPool. Länkar till det här inlägget. Subscribe to: Posts (Atom). Thread Pooling work items in C#. Template images by suprun.
dreamstatecoding.blogspot.com
Dreamstate Coding: April 2013
http://dreamstatecoding.blogspot.com/2013_04_01_archive.html
Saturday, April 13, 2013. C# array compress and decompress with GZipStream. A small utility class for compressing and decompressing. Var ms = new. Var gzip = new. GZipStream(ms, CompressionLevel.Optimal). GzipWrite(data, 0, data.Length);. Data = ms.ToArray();. The trick is to read the last 4 bytes to get the length. Gzip appends this to the array when compressing. Var lengthBuffer = new. ArrayCopy(data, data.Length - 4, lengthBuffer, 0, 4);. UncompressedSize = BitConverter.ToInt32(lengthBuffer, 0);.
dreamstatecoding.blogspot.com
Dreamstate Coding: March 2013
http://dreamstatecoding.blogspot.com/2013_03_01_archive.html
Saturday, March 16, 2013. DateTime.Now vs DateTime.UtcNow. Please note that this post does not take into account any other perspective of when to use DateTime.Now or DateTime.UtcNow other than performance. This morning I tried to find numbers that compare DateTime.Now and DateTime.UtcNow but all I found was long discussions on the subject of when to use them. So I decided to write a quick sample myself to see. Last value was 2013-03-16 12:50:18. Last value was 2013-03-16 11:50:18. Iterations = 10000000;.
dreamstatecoding.blogspot.com
Dreamstate Coding: MongoDB C# Driver, Querying multiple fields with intervals
http://dreamstatecoding.blogspot.com/2011/06/mongodb-c-driver-querying-multiple.html
Monday, June 13, 2011. MongoDB C# Driver, Querying multiple fields with intervals. Simple way of chaining together a query when looking for records that require both field one and field two to be in a certain interval. Double foo = 1.0;. Double bar = 2.0;. MongoCollection BsonDocument items = db.GetCollection BsonDocument ("collection");. Var query = Query.And(. QueryGT("field one", foo).LT(bar) ,. QueryGT("field two", foo).LT(bar). MongoCursor BsonDocument dbResult = items.Find(query).
dreamstatecoding.blogspot.com
Dreamstate Coding: October 2010
http://dreamstatecoding.blogspot.com/2010_10_01_archive.html
Saturday, October 23, 2010. Good or realistic advice from the computer security industry? Came across the following article some days ago. Quick analysis with interview questions to a normal computer user. Conclusion is that the computer security industry must become better at some things as the public thinks of computer threats like we did 5 years ago. Things have changed. Http:/ blogs.msdn.com/b/tzink/archive/2010/10/10/does-the-computer-security-industry-give-good-or-realistic-advice.aspx. So pasting ...
dreamstatecoding.blogspot.com
Dreamstate Coding: SGEN: Could not load file or assembly 'xxx' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515)
http://dreamstatecoding.blogspot.com/2011/06/sgen-could-not-load-file-or-assembly-or.html
Thursday, June 9, 2011. SGEN: Could not load file or assembly xxx or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515). Always nice to see our old friend HRESULT in an error message. Ran into this today when converting some .NET3.5 projects to .NET4.0 and at the same time upgrading some 3rd party libraries. Hope this helps : ). September 5, 2013 at 1:06 AM. Subscribe to: Post Comments (Atom). MongoDB C# Driver, Querying multiple fields with i.
dreamstatecoding.blogspot.com
Dreamstate Coding: MongoDB C# Driver, Query multiple tags that are required
http://dreamstatecoding.blogspot.com/2011/06/mongodb-c-driver-query-multiple-tags.html
Thursday, June 9, 2011. MongoDB C# Driver, Query multiple tags that are required. Tried hard to find the solution to querying multiple tags through the MongoDB C# driver. Many of the solutions that I found were about using OR to put together the tags but I needed to AND the tags. I.e. all tags supplied were required to be present on in the result. The solution was quite simple actually. Just my mind that thought it would require some special solution. String[] tags = new string[] {"foo", "bar"};.