/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.xamboy.com
| | accessibledreams.home.blog
7.2 parsecs away

Travel
| | Cologne, German Beers, German Fairgrounds and loads of fun! 25th October I had a talk at Expert Day for Xamarin. I flew in from an evening flight on the 24th straight after Microsoft TechDays in Sweden. I missed the speaker's dinner but when I arrived at the Microsoft offices on the 25th I knew I...
| | xamgirl.com
2.2 parsecs away

Travel
| | In the first part of this article, I showed different tips when creating a custom control, in this part I'll be covering some additional tips. As in the previous article, I'm NOT going to show you how to create a custom control (if you want to learn about that you can read thisgreat article by ...
| | flowbased.de
13.6 parsecs away

Travel
| | [AI summary] A tutorial demonstrates how to use MultiBinding and a custom converter to manage multiple visibility values for a control in Windows Presentation Foundation (WPF).
| | jinyuz.dev
69.7 parsecs away

Travel
| Often, I forget how to display the raw SQL of a queryset in Django. This is a quick and easy example of how to do it from django.contrib.auth.models import User qs = User.objects.all() print(qs.query) SELECT "auth_user"."id", "auth_user"."password", "auth_user"."last_login", "auth_user"."is_superuser", "auth_user"."username", "auth_user"."first_name", "auth_user"."last_name", "auth_user"."email", "auth_user"."is_staff", "auth_user"."is_active", "auth_user"."date_joined" FROM "auth_user"