
siderite.blogspot.com
Siderite's BlogI am a .NET programmer living and working in Bucharest, Romania. These are my thoughts.
http://siderite.blogspot.com/
I am a .NET programmer living and working in Bucharest, Romania. These are my thoughts.
http://siderite.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Friday
LOAD TIME
0.5 seconds
16x16
32x32
64x64
128x128
PAGES IN
THIS WEBSITE
20
SSL
EXTERNAL LINKS
82
SITE IP
173.194.46.108
LOAD TIME
0.547 sec
SCORE
6.2
Siderite's Blog | siderite.blogspot.com Reviews
https://siderite.blogspot.com
I am a .NET programmer living and working in Bucharest, Romania. These are my thoughts.
Super Fast and Accurate string distance algorithm: Sift3 ~ Siderite's Blog
http://siderite.blogspot.com/2007/04/super-fast-and-accurate-string-distance.html
Wednesday, April 04, 2007. Super Fast and Accurate string distance algorithm: Sift3. Check out the new improved version of Sift here: Super Fast and Accurate string distance algorithm: Sift4. Update October 6 2014:. New stuff, compare Levenstein vs Sift here:. Update June 25th 2013:. I've decided to play a little with the suggestions in the comments and check for validity. This was spurned by the realization that a lot of people use my algorithm. Update: the Sift algorithm is now on Codeplex. Problem, th...
Deserializing/Serializing XML that contains xsi:type attributes (and other XML adventures) ~ Siderite's Blog
http://siderite.blogspot.com/2014/01/deserializingserializing-xml-that.html
Friday, January 31, 2014. Deserializing/Serializing XML that contains xsi:type attributes (and other XML adventures). I wanted to take an arbitrary XML format and turn it into C# classes. I even considered for a while to write my own IXmlSerializable. In Visual Studio 2012, all you have to do is copy the XML, then go to Edit - Paste Special - Paste XML as classes. There is an option for pasting JSON there as well. There is the xsd.exe. Other zillion custom made tools that transform the XML into whatever.
Reflector is dead. Long live dotPeek, JustDecompile, and others? ~ Siderite's Blog
http://siderite.blogspot.com/2011/05/reflector-is-dead-long-live-dotpeek.html
Friday, May 20, 2011. Reflector is dead. Long live dotPeek, JustDecompile, and others? As I was blogging before. RedGate are assholes. They bought Reflector. Promised to keep it free, then asked money for it. But every crisis can be turned into an opportunity. JetBrains. For example, has just released JustDecompile. As a footnote, Reflector, just before it went commercial, could not decompile some of the code. There Not only it did not decompile it, but it presented empty methods like that was all there ...
Very slow UpdatePanel refresh when containing big ListBoxes or DropDownLists ~ Siderite's Blog
http://siderite.blogspot.com/2008/06/very-slow-updatepanel-refresh-when.html
Saturday, June 14, 2008. Very slow UpdatePanel refresh when containing big ListBoxes or DropDownLists. Update: this fix is now on CodePlex: CodePlex. Get the latest version from there. The scenario is pretty straightforward: a ListBox. Or any control that renders as a Select. Html element with a few thousand entries or more causes an asynchronous UpdatePanel. Update to become incredibly slow on Internet Explorer and reasonably slow on FireFox, keeping the CPU to 100% during this time. Why is that? So if ...
EasyReplace - replace files in a folder hierarchy with newer versions ~ Siderite's Blog
http://siderite.blogspot.com/2009/12/easyreplace-replace-files-in-folder.html
Monday, December 21, 2009. EasyReplace - replace files in a folder hierarchy with newer versions. New CodePlex project: EasyReplace. What it does is replace all files in a folder hierarchy with the files you drag&drop on the app info box. It is very helpful when you want to replace old library files or some other versions of your files with newer ones without having to manually navigate through solution folders. I am a .NET programmer living and working. In Bucharest, Romania. Posts are divided into.
TOTAL PAGES IN THIS WEBSITE
20
Agile Entity Framework 4 Repository: Part 1- Model and POCO Classes | The Data Farm
http://thedatafarm.com/data-access/agile-entity-framework-4-repository-part-1-model-and-poco-classes
Julie Lerman's World of Data. Agile Entity Framework 4 Repository: Part 1- Model and POCO Classes. November 19, 2009. Updated Information on Repositories:. Please check out the REPOSITORY module of the Domain-Driven Design on Pluralsight. That Steve Smith and I authored. You can see more information on repositories. Updated Information on Testing/Mocking with EF6:. In my EF6 course on Pluralsight, the final module (“ Sometimes It’s the Little Things. Agile EF 4 Repositories Part 4: Compiled LINQ Queries.
basicHttpBinding | Andrei Rinea's technical blog
http://blog.andrei.rinea.ro/tag/basichttpbinding
Andrei Rinea's technical blog. NET, SQL Server and Java. Posted by Andrei Rinea. On 13 December 2011. TL;DR version :. Upon a curiosity of mine I found out that WCF with basicHttpBinding can be easily beaten (performance-wise) by plain-old ASP.NET even if stripped down of transactions, reliability, security etc. (1500 req/sec vs 800 req/sec). Read more ». WCF service local path. Posted by Andrei Rinea. On 8 November 2011. Developing that small WCF presentation that I was talking about earlier. I got stum...
Quick trick : Copy file path | Andrei Rinea's technical blog
http://blog.andrei.rinea.ro/2015/02/04/quick-trick-copy-file-path
Andrei Rinea's technical blog. NET, SQL Server and Java. Quick trick : Copy file path. Posted by Andrei Rinea. On 4 February 2015. Are you in a command line prompt and you need the full path of the file as an argument? You don’t need to type all of the path manually, not even pre-complete it using TABs. Just navigate to the file. Here comes the trick part : hold SHIFT while right-clicking it. The context menu will look like so :. I wrote before about the SHIFT-right click. So this is somehow connected.
Preparing the development environment for Java – Windows and Ubuntu | Andrei Rinea's technical blog
http://blog.andrei.rinea.ro/2013/11/16/preparing-the-development-environment-for-java-windows-and-ubuntu
Andrei Rinea's technical blog. NET, SQL Server and Java. Preparing the development environment for Java – Windows and Ubuntu. Posted by Andrei Rinea. On 16 November 2013. In order to get started developing in Java we’ll need the following :. I’ll showcase Windows and Ubuntu (Linux). This is the most basic component required to run Java programs. 8211; Integrated Development Environment. This is typically an MDI ( Multi-Document Interface. Code completion – instead of having to type the whole keywor...
Dynamic linq predicates | Code.Util
https://codeutil.wordpress.com/2013/11/14/dynamic-linq-predicates
Madalina Buzatu's professional blog notes on software development. Orchard eager loading when using IRepository. This post is actually a repost of this great article A universal PredicateBuilder. That I found very useful so I decided to share it here. Sometimes I need to build dynamically the where part of a linq query and, unfortunately, there is no straight forward, out of the box solution inside the .NET framework for doing this. Exec sp executesql N'SELECT * FROM [dbo].[Rentals] AS [Extent1] WHER...
Eilon Lipton's Blog - Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it
http://weblogs.asp.net/leftslipper/archive/2007/02/26/sys-webforms-pagerequestmanagerparsererrorexception-what-it-is-and-how-to-avoid-it.aspx
SysWebForms.PageRequestManagerParserErrorException - what it is and how to avoid it. Tuesday, February 27, 2007. If youve used the Microsoft ASP.NET AJAX. Control, theres a good chance youve hit the Sys.WebForms.PageRequestManagerParserErrorException error. The client ends up receiving a blob of data that it cant parse, so it gives up and shows you a PageRequestManagerParserErrorException. Heres an example of what the message contains:. Details: Error parsing near Hello, World! If you ask me, this error ...
Dev Dot Net World: EditCompany !!
http://devdotnetworlds.blogspot.com/2009/11/editcompany.html
Monday, November 16, 2009. Public partial class EditCompany : System.Web.UI.Page. Protected void Page Load(object sender, EventArgs e). Using (SqlConnection conn = new SqlConnection(ConfigurationManager.AppSettings["conIDLDPL"]). String id=Request.QueryString["id"].ToString();. String str = "select * from tblCompanyMaster where comp id=" id " ;. SqlCommand com = new SqlCommand(str,conn);. SqlDataReader dr = com.ExecuteReader();. TxtCompName.Text = dr["comp name"].ToString();. SqlDataReader dr = insertCom...
Dev Dot Net World: AddPaymentSent !!
http://devdotnetworlds.blogspot.com/2009/11/addpaymentsent.html
Monday, November 16, 2009. Public partial class AddPaymentsSent : System.Web.UI.Page. IDLDPLMain objIDLDPLMain = new IDLDPLMain();. DynMenu objDynMenu = new DynMenu();. Protected void Page Load(object sender, EventArgs e). TxtDate.Text = DateTime.Now.ToString("dd/MM/yyyy");. If (Request.QueryString.HasKeys(). If (Request.QueryString["Action"] = "Edit"). LblPaymentSent.Text = "edit payment sent ";. ObjIDLDPLMain.AddlogDetails("Edit Payment Sent", Request.Url.ToString() ;. BtnSubmit.Visible = false;. DDLSu...
Dev Dot Net World: ViewPaymentSent !!
http://devdotnetworlds.blogspot.com/2009/11/viewpaymentsent.html
Monday, November 16, 2009. Public partial class viewpaymentsent : System.Web.UI.Page. Private const string ASCENDING = " ASC";. Private const string DESCENDING = " DESC";. IDLDPLMain objIDLDPLMain = new IDLDPLMain();. String strPayOperation = String.Empty;. String strPayApprove = String.Empty;. DynMenu objDynMenu = new DynMenu();. Protected void Page Load(object sender, EventArgs e). ObjIDLDPLMain.AddlogDetails("View Payment Sent", Request.Url.ToString() ;. Code for Fill The GridView*/. DataTable dt = Ge...
Dev Dot Net World: AddLocation !!
http://devdotnetworlds.blogspot.com/2009/11/addlocation.html
Monday, November 16, 2009. Protected void Page Load(object sender, EventArgs e). If (Request.QueryString.HasKeys(). If (Request.QueryString["action"].ToString() = "edit"). LblLocation.Text = "Edit Location";. BtnSubmit.Text = "Save";. Else if (Request.QueryString["action"].ToString() = "copy"). LblLocation.Text = "Copy Location";. BtnSubmit.Text = "Save";. Add Company Location Type. Using (SqlConnection conn = new SqlConnection(ConfigurationManager.AppSettings["conIDLDPL"]). Locat = new ListItem("Select-...
TOTAL LINKS TO THIS WEBSITE
82
Joyas en acero
Texto Menú 1. New Contact Us 1. Powered by InstantPage® from GoDaddy.com. Want one?
Wholesale and retail trade in second-hand and new clothing, shoes and accessories. | sideritas.com
Trespass kids ski clothing. Pink Shadow Summer (Women). A&M HQ Premium Winter. Fly 53 (Men and Women mix). Should you like to be informed about new goods and shipments, don't hesitate to subscribe to our newsletter. Be the first one to receive the information! Enter your e-mail address. We provide assistance for shipments to customers' warehouses and customs clearance. Areas served: Russia, Belarus, Ukraine, European Union and worldwide. The stock is sorted out in a special way in order to ensure the cli...
Didmeninė ir mažmeninė prekyba dėvėtais ir naujais drabužiais, avalyne bei aksesuarais. | sideritas.com
A&M HQ Premium Winter. Pink Shadow Summer (Women). FEVER (Women) MIX I. Norintiems pirmiems sužinoti apie gautas naujas prekes ir siuntas, siūlome užsisakyti naujienlaiškį. Tegul informacija Jus pasiekia pirmus! Įveskite savo el. pašto adresą. Adidas, Bugatti, Converse, David Jones, Diesel, Jack and Jones, KangaROOs, Lee, Mexx, Next, Nike, Pierre Cardin, Puma, Reebok, s.Oliver, Tommy Hilfiger, ir kt. Adidas, AKE, Amy Gee, Antony Morato, Asics, Bershka, Bench, Blend, Bugatti, Converse, . Asortimentas surū...
Сидеритас, ЗАО - Мажейкяй - ул.Гамиклос, д.40e - 370(671)831-21 - товары и услуги компании на портале FIS.ru
Одежда Сток и Секонд из Европы. Одежда Сток и Секонд из Европы: лучшее соотношение качества и цены. Сток одежды из Франции. Сток одежды из Италии. Сток мужской одежды Sidecar. Сток мужской одежды из Испании. Сток женской одежды Sidecar. Сток женской одежды из Испании. Предлагаем качественную одежду Cток из Европы. Широкий выбор женских, мужских и детских миксов. Здесь Вы можете найти лучшее соотношение качества и цены, одежду на актуальный сезон. Узнайте о нас больше. 8,50 €. Цена за 1 шт. Цена за 1 шт.
Siderite's Blog
Siderite's Blog by Siderite Zackwehdex. Thursday, August 13, 2015. Navigator.geolocation API strange behaviour on Microsoft Edge - a foolproof location snippet in Javascript. Today we tested a web application in the new Microsoft Edge browser. To our surprize, the site failed where Internet Explorer, Chrome, Firefox and even Safari worked perfectly well. I narrowed the problem to the navigator.geolocation.getCurrentLocation. Which wasn't working. The site would see navigator.geolocation. Of three TV seri...
siderite.com - This website is for sale! - Kids clothing Resources and Information.
The domain siderite.com. May be for sale by its owner! The domain siderite.com. May be for sale by its owner! This page provided to the domain owner free. By Sedo's Domain Parking. Disclaimer: Domain owner and Sedo maintain no relationship with third party advertisers. Reference to any specific service or trade mark is not controlled by Sedo or domain owner and does not constitute or imply its association, endorsement or recommendation.
北京北居利康搬家有限公司,口碑好信誉好!电话4008703500,官网
长途搬家 6元/公里 4.2米厢式货车16立方米. 问: 跨省市长短途搬家是一件让人头痛的事情,斩新的家具、家电、室内陈设物品该怎么办呢 答 我公司推出专业长途搬家业务,您完全托付给我们就可以了,全. 阅读更多. 拆装家具注意事项 一、拆装家具务必请专业师傅为您服务,各种家具看似构造简单,几个螺丝,几块板材而已,但是如果不懂行的去做这样的事情,我相信时间. 阅读更多. 北京搬家公司,收费标准,费用多少钱 ,排名第一. 大鱼缸,大型玻璃器皿,大理石健身器材,超重石器,搬. 二、回收制冷剂 首先开机制冷,外机运行后关闭小阀门,阀门结霜. 阅读更多. 一 名贵家具包装服务、高档办公家具包装服务、红木家具、古典家具专业包装 二 承接玻璃制品、瓷器、玉器雕刻、工艺品等物品的包装业务 碗、盘. 阅读更多. 大鱼缸,大型玻璃器皿,大理石健身器材,超重石器,搬. 搬家 家具拆装 拆装家具 板式单人床 木制单人床 搬运鱼缸 包装服务 空调移机 长途搬家 搬运钢琴 利康搬家 四通搬家 兄弟搬家 北京搬家公司 吉日搬家 国际搬家 vip搬家 高端搬家 公司搬家 办公室搬家 家庭搬家 住宅搬家 居民搬家 搬家公司 搬家费用.
Siderite - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 1 Month. This deviant's full pageview. Last Visit: 2 hours ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. Why," you ask? I 've been aske...
SOCIAL ENGAGEMENT