
pstaev.blogspot.com
Peter's Tips & TricksPeters Tips & Tricks
http://pstaev.blogspot.com/
Peters Tips & Tricks
http://pstaev.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Thursday
LOAD TIME
1.3 seconds
16x16
32x32
64x64
128x128
PAGES IN
THIS WEBSITE
17
SSL
EXTERNAL LINKS
35
SITE IP
74.125.228.236
LOAD TIME
1.251 sec
SCORE
6.2
Peter's Tips & Tricks | pstaev.blogspot.com Reviews
https://pstaev.blogspot.com
Peters Tips & Tricks
Peter's Tips & Tricks: Convert RSA public key from XML to PEM format (.NET) (Part 1)
http://pstaev.blogspot.com/2010/08/convert-rsa-public-key-from-xml-to-pem.html
Peters Tips and Tricks. Friday, August 06, 2010. Convert RSA public key from XML to PEM format (.NET) (Part 1). Probably the people working with asymmetric cryptography have struggled for a way to convert the XML format of the RSA public key to the more widely used PEM format. Although there is a solution for the reverse transformation (from PEM to XML) on the following address http:/ www.jensign.com/opensslkey/opensslkey.cs. I have not found anywhere a solution to this problem. System.Linq; using. ArrBi...
Peter's Tips & Tricks: Simple Tile Horizontally / Tile Vertically functionality in WPF
http://pstaev.blogspot.com/2008/11/simple-tile-horizontallytile-vertically.html
Peters Tips and Tricks. Sunday, November 23, 2008. Simple Tile Horizontally / Tile Vertically functionality in WPF. But enough talking, lets get to work:. And here is the code that will change to one of the modes:. System.Windows.RoutedEventArgs) Grid.SetColumn(txtTextBoxTop, 0) Grid.SetRow(txtTextBoxTop, 0) Grid.SetColumnSpan(txtTextBoxTop, 3) Grid.SetRowSpan(txtTextBoxTop, 1) Grid.SetColumn(split, 0) Grid.SetRow(split, 1) Grid.SetColumnSpan(split, 3) Grid.SetRowS...System.Windows.RoutedEventArg...
Peter's Tips & Tricks: March 2007
http://pstaev.blogspot.com/2007_03_01_archive.html
Peters Tips and Tricks. Wednesday, March 28, 2007. Creating a simple CheckListBox control in WPF. With NET Framework 3.0 Microsoft has removed one control that I've liked and used a lot - the CheckListBox. But on the other hand with WPF the developer can easily create his own check list control. Here is how to create one yourself. Put a simple ListBox in your window:. Http:/ schemas.microsoft.com/winfx/2006/xaml/presentation". Http:/ schemas.microsoft.com/winfx/2006/xaml". 10 chkCheckBoxToAdd = New.
Peter's Tips & Tricks: June 2008
http://pstaev.blogspot.com/2008_06_01_archive.html
Peters Tips and Tricks. Saturday, June 14, 2008. Having different CellEditor for different rows (Xceed WPF Grid). This solution utilizes WPF DataTriggers. So if you are not very familiar with them please read the related articles on MSDN. Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type xcdg:Cell} , Path=Content , Mode=OneWay}". Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type xcdg:Cell} , Path=Content , Mode=OneWay}". Enjoy the Power WPF! Awesome Inc....
Peter's Tips & Tricks: December 2009
http://pstaev.blogspot.com/2009_12_01_archive.html
Peters Tips and Tricks. Saturday, December 05, 2009. How to hack Telerik Reporting Q3 to be supported under Visual Studio 2010 Beta 2. Several weeks after Visual Studio 2010 Beta 2 has become public Telerik released their Q3 release. And despite the fact that their Silverlight Controls setup fully supports VS 2010 B2, their reporting setup has no support at all! Registering Telerik Reporting Report File Template. To the following locations. ProgramFiles% Microsoft Visual Studio 10.0 Common7 IDE ItemT...
TOTAL PAGES IN THIS WEBSITE
17
Zen of SQL: Refactoring Entity-Attribute-Value Design
http://pratchev.blogspot.com/2010/07/refactoring-entity-attribute-value.html
Tuesday, July 27, 2010. Ntity-Attribute-Value (often referenced as EAV) table design is one of the “wonderful” things that newcomers to the SQL land discover very quickly! 160; Example is storing all employee information in 3 columns: key column to identify employee ( entity. Attribute key column ( attribute. To identify the attribute stored (name, birth date, SSN, date of hire, etc.), and value column ( value. To store the actual value. Normally the value column has to be of some large length characte...
Zen of SQL: Defensive Database Programming
http://pratchev.blogspot.com/2011/01/defensive-database-programming.html
Friday, January 28, 2011. Efensive programming is a much avoided topic by developers. Rushing to deliver features is almost always prioritized higher than spending time to defensively program code for robustness. Especially in the database world where this concept is much misunderstood. This is why it was real pleasure to read Alex Kuznetsov's book Defensive Database Programming with SQL Server. Posted by Plamen Ratchev. February 7, 2011 at 9:41 AM. I dont think this guy needs an extra buck a month.
Zen of SQL: Import XML File to SQL Table
http://pratchev.blogspot.com/2008/11/import-xml-file-to-sql-table.html
Friday, November 14, 2008. Import XML File to SQL Table. Here is a brief example of importing an XML file into SQL Server table. This is accomplished by using the BULK option of OPENROWSET to load the file, and then utilizing the XQuery capabilities of SQL Server to parse the XML to normalized table format. This example requires SQL server 2005 or SQL Server 2008. First, the following XML is saved to XML file C: Products.xml. Next, a table named Products is created to store the XML data. Sku, product desc.
Zen of SQL: The Power of Simplicity
http://pratchev.blogspot.com/2010/08/power-of-simplicity.html
Friday, August 13, 2010. The Power of Simplicity. Olving a problem very often results in unnecessary complex solutions. One of the first lessons I learned from my math teacher was to scrap any solution that exceeds a page. She would urge me to start all over and look for simpler way to resolve it. In her world there was always a short and simple solution, it was only a matter of seeing it. What are the rules to simplicity? There are no rules! I like to use the following quotes as guidelines:. 160; &...
Zen of SQL: Refactoring Ranges
http://pratchev.blogspot.com/2010/02/refactoring-ranges.html
Monday, February 15, 2010. Refactoring is misunderstood so many times, mostly by developers living by the motto. If it's not broken don't fix it". But in most cases this is invalid argument and leads to keeping inefficient and difficult to maintain solutions around. With tools and languages evolving, as well as knowledge about specific technology, there are so many opportunities to improve existing code in a way that will make a huge difference in many aspects. As Sir Winston Churchill said. Ranges by tr...
Zen of SQL: Column Aggregates
http://pratchev.blogspot.com/2009/08/column-aggregates.html
Friday, August 21, 2009. We all know how to use the aggregate functions MIN, MAX, COUNT, etc. to calculate aggregates across rows. For example, using MAX we can determine the maximum value for group of rows. But what if we want to see the maximum value for each row across columns? There is no aggregate function that accepts list of columns…. Let's look at example to illustrate this. Here is sample table with four data columns:. Max across columns with XQuery. Keycol max col max val. Keycol cnt non zero.
Jordy's Bag of Tricks on Mobile,JavaScript,XAML,WPF,SQL: Parse SQL Connection String in C#
http://j-bag-of-tricks.ilchev.com/2009/04/parse-sql-connection-string-in-c.html
Jordy's Bag of Tricks on Mobile,JavaScript,XAML,WPF,SQL. Wednesday, April 29, 2009. Parse SQL Connection String in C#. It is actually very easy, but not very popular. SqlConnectionStringBuilder scsb = new SqlConnectionStringBuilder(connectionString);. Then you can alter different properties for example modify timeout to 5 min from default. ScsbConnectTimeout = 300;. Finally to use it simply execute. Subscribe to: Post Comments (Atom). View my complete profile. P Staev Tip and Tricks. SQL Studio Team Blog.
Jordy's Bag of Tricks on Mobile,JavaScript,XAML,WPF,SQL: How to make simple (Free!) Grid in WPF with XAML from DataSet or DataTable
http://j-bag-of-tricks.ilchev.com/2007/01/how-to-make-grid-in-wpf-with-xaml-from.html
Jordy's Bag of Tricks on Mobile,JavaScript,XAML,WPF,SQL. Wednesday, January 10, 2007. How to make simple (Free! Grid in WPF with XAML from DataSet or DataTable. This is just a concept you can start with to make your own Grid in XAML. TextBlock Width="100" Text="{Binding}" /. XAML Style for Horizontal List for columns:. Style x:Key="HorizontalList" TargetType="{x:Type ListBox}". StackPanel Orientation="Horizontal" Panel.IsItemsHost= "True"/. Code Behind (VB.Net):. Dim customers As DataSet = New DataSet.
Jordy's Bag of Tricks on Mobile,JavaScript,XAML,WPF,SQL: January 2013
http://j-bag-of-tricks.ilchev.com/2013_01_01_archive.html
Jordy's Bag of Tricks on Mobile,JavaScript,XAML,WPF,SQL. Wednesday, January 16, 2013. JSON ISO 8601 date formatting, Kendo MVVM using Kendo templates. Here is a quick tip how to bind to JSON ISO 8601 date. Parsing and formatting to local date is done using Kendo framework. 09; div data-bind=source: expirationDate data-template=format-date-template /div script id=format-date-template type=text/x-kendo-template span #: kendo.toString(kendo.parseDate(data),d) # /span /script. Subscribe to: Posts (Atom).
TOTAL LINKS TO THIS WEBSITE
35
Omniconsult - Strategische Informationstechnologie
Wurde 1997 als unabhängiges Privatunternehmen gegründet und bietet heute Dienstleistungen in. Ua IT, EDV, Daten- und Netzwerktechnologien, Hard- und Software; Systemauswahl, IT- und Business. Management, Schulungen, Audits, IPv6 Migrationen, ISO 20000, ISO 27000). Auch Datenschutz und Mitbestimmung speziell für ausländische Unternehmen am deutschen Markt. IT Management, Spectrum, IPv6. Unternehmenswert von IT, Service Management (ITIL, CoBIT, ISO 20000, ISO 27000 etc.).
Pendleton Street Advisors
NEWS, COMMENTARY and ARTICLES. Investment Banking Advice and Wealth Management Solutions. Pendleton Street Advisors is a financial advisory firm specializing in customized investment management strategies, business transition planning, and family wealth planning. Ultimately, our success is determined by the degree to which we achieve the standards our clients have set for us. Pendleton Street Advisors, LLC 2013 HOME.
pstaehli.ch :: Home
April, 2012: moved site to new hoster. Some stuff (gallerys mainly) ist not yet back up - I'm working on it. January 19th, 2009: new CVs added. The new CVs are available from the 'about me' page. Check out. August 9th, 2004: More photos added. I've added some photos I took in Berlin this summer and a few of the Streetparade 2004 (members only, sorry). Go to the photos. July 19th, 2004: Standards compliance reached. All pages are now valid XHTML 1.0 Transitional. Get a standards compliant browser.
Blog de pstaelle86 - mi$$ d£lic3 - Skyrock.com
Mot de passe :. J'ai oublié mon mot de passe. Kikouuuu * j vous souhait z une bonn visit and abat l s coms ki$ $. Mise à jour :. Abonne-toi à mon blog! N'oublie pas que les propos injurieux, racistes, etc. sont interdits par les conditions générales d'utilisation de Skyrock et que tu peux être identifié par ton adresse internet (54.145.69.42) si quelqu'un porte plainte. Ou poster avec :. Retape dans le champ ci-dessous la suite de chiffres et de lettres qui apparaissent dans le cadre ci-contre. N'oublie ...
Random thoughts… | Philipp Ständer
June 10, 2014. Marathon Dash (Boulder Dash clone on C64). While recovering some old C64 floppy discs (most of them are still working after 15 years! I found "Marathon Dash", a Boulder Dash clone for C64. Less than 1 min. June 06, 2014. Giana Sisters The lost Levels. In 1989 the two german programmers Sandy. And Prof. Knibble. Hacked the C64 game "The Great Giana Sisters". April 30, 2014. Using git versioning to keep track of your UNIX settings in `/etc/`. Less than 1 min. April 28, 2014. Less than 1 min.
Peter's Tips & Tricks
Peters Tips and Tricks. Friday, August 27, 2010. Convert RSA public/private key from XML to PEM format (.NET) (Part 2). In my previous post I've shown how to convert the public key of an XML formatted RSA key to the more widely used PEM format. The only limitation of the solution was that since it utilizes the Cryptographic Next Generation (CNG) algorithms it is usable only on Windows 7 and Windows Server 2008 R2. You can find the compiled source here. Corresponding ASN identification bytes. ArrBinaryPub...
Responsive Joomla template for decor and interior design - JA Decor
Sed eu lobortis urna. Morbi venenatis tempus justo, a fringilla orci tempor a. In placerat nisi nec magna vehicula gravida. Maecenas eget consectetur sapien. Mauris molestie felis ac blandit cursus. Maecenas id fermentum ante. Suspendisse id tincidunt. Vestibulum a augue eros. Nullam aliquam leo ac orci scelerisque, sed gravida metus imperdiet. Sed. Cras sollicitudin nisl orci, quis vestibulum nunc scelerisque non. Phasellus risus enim, consequat at leo. Quisque eu massa ut justo egestas pellentesque?
PSTAFFAN | Välkommen till en värld av P
Välkommen till en värld av P. Hudfärgade plåster (Aggressions Vlogg). Behövs verkligen hudfärgade plåster? Jag är inte helt övertygad, men skriv gärna vad du tycker! 10 augusti, 2015. Ni och era spelinbjudningar. 4 juni, 2015. Satt och surfade runt på Facebook och fick en ny inbjudan till ett spel på facebook. Under den tiden som jag använt Facebook har jag spelat ett spel, nämligen Bejeweled blitz. Ta ett djupt andetag och njut. (Extra kul att det står i den ordningen som de blev blockade). SJ, sluta ha...
Top Staffing Agencies in San Francisco, New York | Premier
Connect With Premier To Get Started. Your Dream Job Starts Here. Search our available jobs and find your match! Premier has top talent to fuel your big idea and grow your business. We can fuel your organization with top talent and your career with opportunity. Send us a message or connect with us on social media. SIA “Best Staffing Firms” – 2017. Staffing Industry Analyst- Diversity Staffing Firm- 2016. INC 5000- #2438 “Fastest Growing Private Companies” 2015. 7 Bay Area Largest Staffing Firm 2015.
This site is under development
This site is under development. This page indicates the webmaster has not uploaded a website to the server. For information on how to build or upload a site, please visit your web hosting company's site.