
ANDYKDOCS.DE
AndyK DocsImpressum, Datenschutz und Haftungsauschluss.
http://www.andykdocs.de/
Impressum, Datenschutz und Haftungsauschluss.
http://www.andykdocs.de/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Thursday
LOAD TIME
7.4 seconds
PAGES IN
THIS WEBSITE
7
SSL
EXTERNAL LINKS
31
SITE IP
104.131.73.189
LOAD TIME
7.368 sec
SCORE
6.2
AndyK Docs | andykdocs.de Reviews
https://andykdocs.de
Impressum, Datenschutz und Haftungsauschluss.
About Me - AndyK Docs
https://andykdocs.de/about
Created by Andreas Koch. Andreas Koch aka AndY / AndyK / Andyk7. Software Developer at an eCommerce company. NERD. Golang, C#, JavaScript and PHP. Dockerize all the things! Bitbucket - bitbucket.org/andreaskoch. Github - github.com/andreaskoch. Docker - hub.docker.com/u/andreaskoch. Vagrant - vagrantcloud.com/andreaskoch. Stackoverflow - stackoverflow.com/users/638217/andreas-koch. Places I’ve worked. Linde IT Services (Stockholm). Groupware Competence Center (University of Paderborn).
Tags - AndyK Docs
https://andykdocs.de/tags.html
Bilder vom Hurricane Festival 2004. Ein paar Bilder die ich beim Hurricane Festival 2004 gemacht habe. Silvester 2005 / 2006 Bremen. LIS Conference - München Dezember 2005. Verlängertes Wochenende in München mit der Linde IT Services Konferenz im Anschluss :smile:. Franz Ferdinand 8. Dezember Fryshuset. Ein sehr gutes Konzert :smile:. Hiking - Roslagsleden Track 6. Track 6: Grovsta - Vigelsjö, 21 km (2005-10-02). Bilder vom Highfield Festival 2005. Fünf Freunde und das Schaf Baron. Cut the Rope - Part 2.
Impressum - AndyK Docs
https://andykdocs.de/impressum
Impressum, Datenschutz und Haftungsauschluss. Created by Andreas Koch. Angaben gemäß 5 TMG. Verantwortlich für den Inhalt nach 55 Abs. 2 RStV. Quelle: http:/ www.e-recht24.de. Wir weisen darauf hin, dass die Datenübertragung im Internet (z.B. bei der Kommunikation per E-Mail) Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich. Datenschutzerklärung für die Nutzung von Google Analytics. Powered by allmark - the markdown webserver.
Random Stuff - AndyK Docs
https://andykdocs.de/random
Created by Andreas Koch. Sounds for Programming - 32c3 Toilet Party Ambient Sound. Some ambient sound for programming and better focus from Chaos Communication Congress 2015 32c3 in Hamburg recorded at the 3rd day of 32c3 with the Toilet Party nearby. 32C3 - Chaos Communication Congress in Hamburg. Pictures and videos from 32C3 in Hamburg (27. - 30. of December 2015). Skandinavisches Julbord in Gütersloh. Schwedisch, Dänisch, Norwegisches Weihnachtsbuffet in der VHS Gütersloh. Brandung / Surf Sounds.
Development - AndyK Docs
https://andykdocs.de/development
Created by Andreas Koch. A collection of docker command snippets for common tasks. Using dotfile-repositories (with dotman). A short introduction on how to install my public vim/dotfile repositories (with dotman). Find all Fatals and Erros in a log file with grep, sed and uniq. Using grep, sed and unique to get a list of all errors in a log file. Working collaboratively on SoapUI projects. Some rules and procedures to avoid merge conflicts when working on SoapUI projects with more than one person.
TOTAL PAGES IN THIS WEBSITE
7
ASP.NET MVC 3 Tools Update Setup fails with fatal error (0x80070643) - Markus Greuel .NET
http://www.markusgreuel.net/blog/asp-net-mvc-3-tools-update-setup-fails-with-fatal-error-0x80070643
Markus Greuel .NET. ASPNET MVC 3 Tools Update Setup fails with fatal error (0x80070643). Today I tried to install the ASP.NET MVC 3 Tools Update. The Installation always failed with a fatal error(0x80070643). The log file sent me to the ASP.NET Webpages.msi logfile which had the wonderful error message. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Wednesday, April 13, 2011.
You do have a backup (plan), don't you? - Markus Greuel .NET
http://www.markusgreuel.net/blog/you-do-have-a-backup-plan-dont-you
Markus Greuel .NET. You do have a backup (plan), dont you? Everybody has probably read a dozen times about how important backups are and how much you are screwed if you dont have a backup (or a wrong/old/incomplete one). So it should be save to assume that at least every IT-Pro makes regular backups. That was what I thought when a co-worker of mine had a HDD crash some weeks ago. I said to him Youre an IT-Pro so you do have a backup, dont you? His answer: Yes, but . Real-time backup/sync using SugarSync.
Website Performance with ASP.NET - Part2 - Reduce Time to First Byte - Markus Greuel .NET
http://www.markusgreuel.net/blog/website-performance-with-asp-net-part2-reduce-time-to-first-byte
Markus Greuel .NET. Website Performance with ASP.NET - Part2 - Reduce Time to First Byte. In the previous post. We learned that the performance of the example application could use some improvements and already identified measures which might help. Now it’s time to start exploring the options we have implementing these. Profiling the server side code. You will find these lines:. Product[] GetProducts(CultureInfo culture) { / Simulate slow DB Access. Thread.Sleep(500); . }. MemoryCache Cache = new. Cached...
Markus Greuel .NET - Blog
http://www.markusgreuel.net/blog/tags/page/1/sql-server
Markus Greuel .NET. SQL Server Performance Troubleshooting for Developers. Some tips for developers who have to deal with a slow SQL server. Wednesday, January 22, 2014. My google plus profile.
Markus Greuel .NET - Blog
http://www.markusgreuel.net/blog/tags/page/1/iis
Markus Greuel .NET. HTTP Error 500.52 (gzip compression) when using IIS as a reverse proxy. IIS cannot rewrite gzip compressed responses from another web server, but you can prevent the response from being compressed. Tuesday, March 25, 2014. My google plus profile.
Website Performance with ASP.NET - Part4 - Use Cache Headers - Markus Greuel .NET
http://www.markusgreuel.net/blog/website-performance-with-asp-net-part4-use-cache-headers
Markus Greuel .NET. Website Performance with ASP.NET - Part4 - Use Cache Headers. The fastest HTTP request is the one not made. This simple rule can lead to faster page load times and less server load, without extensive performance optimization. In the last post, we tried to reduce the number of HTTP requests. By combining and deferring them. Thats a good idea, but wouldnt it be even better to not even make the requests? Prevent Requests with Cache Headers. Header was introduced in HTTP/1.1 and is no...
SQL Server Performance Troubleshooting for Developers - Markus Greuel .NET
http://www.markusgreuel.net/blog/sql-server-performance-troubleshooting-for-developers
Markus Greuel .NET. SQL Server Performance Troubleshooting for Developers. Suppose you have SQL server with performance issues, (web) apps become slow, there are timeouts, something has to be done. If its only your app accessing the SQL server, go ahead, use whatever profiler you like, fix SELECT N 1, optimize queries etc. If you have a (competent) DBA, let him or her handle it. Of course google will help you, sometime. Here is what might be the result of some googe, trial and error:. Literally, Ask Brent.
magento2 Archives - Martin Kramer
http://www.martin-kramer.com/category/allgemein/magento2
Magento 2 – Enhanced template hints. The creation, modification and debugging of Magento 2 frontend templates can be supported by enabling the build in „Template Path Hints for Storefront“ in Admin configuration of Magento 2. Store Configuration Advanced Developer Debug Enabled Template Path Hints for Storefront Yes The result are graphical enhanced frontend blocks […]. Magento2 Command-Line Tool Extension Staging Support (bin/magento). Magento 2 – Enhanced template hints. How to install Magento2 with ow...
Martin Kramer, Autor auf Martin Kramer
http://www.martin-kramer.com/author/mkramer
Magento 2 – Enhanced template hints. The creation, modification and debugging of Magento 2 frontend templates can be supported by enabling the build in „Template Path Hints for Storefront“ in Admin configuration of Magento 2. Store Configuration Advanced Developer Debug Enabled Template Path Hints for Storefront Yes The result are graphical enhanced frontend blocks […]. Magento2 Command-Line Tool Extension Staging Support (bin/magento). Magento2 with external SMTP or mailing services like Mailgun. As des...
Magento2 with external SMTP or mailing services like Mailgun - Martin Kramer
http://www.martin-kramer.com/2015/07/magento2-with-external-smtp-or-mailgun
Magento2 with external SMTP or mailing services like Mailgun. Today I can announce my first Magento2 module: A simple implementation of a configurable Mail-Transport. Using the composite pattern it is possible to enhance this module by new Mail-Transport-Classes easily. With this module it will be possible to send mails from a different smtp server and mail-sending service providers than localhost with sendmail. Beyond this it enables email sending from a docker container context. Magento 2 – Enhan...
TOTAL LINKS TO THIS WEBSITE
31
andykazie
Display the beauty of the world one photo at a time". 2015 Andrew F. Kazmierski andykazie. Display the beauty of the world, one photo at a time". All Photos in all galleries are for sale as prints or as digital downloads, unauthorized use is strictly prohibited. Questions, please contact me at andykazie@gmail.com. About this website, there are thousands of photographs of all types here in the various galleries. I shoot my stock work in an artistic way so that the composition is interesting to the observer.
andykbondphoto
Tuesday, 10 February 2015. Inspirational Home Office Desks. This originator work area includes a little wow variable. Roused by the architects affection for travel, this Maarten De Ceulaer work area from 'The Leather Collection' is an awry tower of bags. The outcome is a fun yet exceedingly modern piece that would suit a wide range of advanced or customary home office plans. An alternate travel roused work area outline, this one looks like old travel trunks. Subscribe to: Posts (Atom).
{Andy Cho : Online Portfolio} :: About me
Andy Cho : Online Portfolio}. Click here to download my résumé (.pdf). I was born and raised in Korea. I spent my youth in Korea for 14 years with full of joy and fun. In 1999, my family and I took a flight to the United States, and soon after, I was fascinated by the web that networks people around the globe. I started working as a full time web developer back in 2007 at KJ Design and Printing, LLC, a print graphics and web design firm for the real estate market. I found that better understanding in bus...
Andy K. Chun | Creative Designer
Andy K. Chun. I'm a digital artist formally trained in film, design, and anthropology. Currently working as a mobile product designer for iOS and Android. Specifically, building user interface designs. I do other stuff too. Here's some samples. I have an enthusiastic appreciation of backpacks, a passionate interest in camera doodads, and an unsustainable obsession with motorized vehicles. I'm also. So please put me at the end of the table. Will often resort to doodling. Like, what are my skills?
Andy Kynerd - Freelance Design
The Bold and the Beautiful. Elevate your brand with a dramatic dose of stunning design. Heads up for effective, affordable creative with big time impact! Come Fly with Me. Scene-stealing design showcases your best features and puts your product center-stage. Want to give your project the star treatment? Get the Show on the Road. Razor sharp graphics and supercharged color make for one thrilling combination. Give yourself a creative turbo-boost! Need a creative perk for your project? Let’s do lunch.
andyke (Andy) - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 12 Years. This deviant's full pageview. This is the place where you can personalize your profile! You can drag and drop to rearrange.
andyke93's blog - andy - Skyrock.com
This is my blog. Welkom laat ma iet achter als ge wilt en have fun. 01/08/2008 at 11:24 AM. 08/10/2008 at 1:36 PM. Subscribe to my blog! DIT IS DUS DE XANDER SI. De lieve kleine xander. Das dus het kindje van mijn zuske. Hij is geboren op de 24e september. Don't forget that insults, racism, etc. are forbidden by Skyrock's 'General Terms of Use' and that you can be identified by your IP address (67.219.144.114) if someone makes a complaint. Please enter the sequence of characters in the field below. Don't...
andykean-professionalmagician.blogspot.com
Andy Kean - Professional Magician
Andy Kean - Professional Magician. Friday, November 13, 2009. Christmas bookings - Filling up Fast. Don't miss out make your Christmas Event unforgettable! Book now http:/ www.keankreations.co.nz/. 021- 162-8863 or 09 -265 2414. Andy Kean - Professional Magician. Tuesday, October 27, 2009. We are now a Limited Company. Now taking bookings for Christmas! Andy Kean - Professional Magician. Thursday, July 9, 2009. Check out the new video promo! Just back off the Dawn Princess check out the lastest video clip.
Andy Keathley
Welcome to my official website. I'm a producer, performer, songwriter, multi-instrumentalist and music teacher in Los Angeles. I'm also the Studio Archive Manager for Ray Charles International. Please feel free to contact me with any questions you may have. Thanks for visiting the site! Donate to Andy's Project Fund. We respect your privacy and will never disclose your information to anyone.
SOCIAL ENGAGEMENT