Comment by Christoffer on How can I indent multiple lines in Xcode?
This also works for us that does not work on an american keyboard :)
View ArticleComment by Christoffer on In xcode 9 with iOS 11 - issue with loading of Map...
@KosukeOgawa Just tried that, but makes no difference. Also not something I would want, as that would ruin usability as the map would be reloaded to often.
View ArticleComment by Christoffer on In xcode 9 with iOS 11 - issue with loading of Map...
I just tried. Unfortunately it did not do anything
View ArticleComment by Christoffer on Navigation bar jumps in iPhone X when using Toolbar
@Shebuka What do you mean with that?
View ArticleComment by Christoffer on Navigation bar jumps in iPhone X when using Toolbar
I do not use Storyboards so this is not possible for me
View ArticleComment by Christoffer on How can I substitute the UITabBar of...
That gives me the following error: Cannot convert return expression of type 'customTabBar.Type' to return type 'UITabBar'. Any ideas?
View ArticleComment by Christoffer on How to merge two configmaps using volume mount in...
Make sure you have no out commented lines (# something) in your file as that for some reason will make the double volumeMounts fail. Please add that to your answer.
View ArticleComment by Christoffer on Django settings when using pgbouncer
default_pool_size should for sure be lower than max_client_conn in your pgbouncer.ini. Your default_pool_size is the amount of connections to your database from pgbouncer (per user. Most setups only...
View ArticleAnswer by Christoffer for After upgrading to google maps api 3.17 all fails
The problem is that place under marker > options has become a used key by the google api. Changed place to myplace and you are up and running again: marker: { options: { icon: new...
View ArticleAfter upgrading to google maps api 3.17 all fails
I get this error in the api's main.js Uncaught InvalidValueError: setPlace: unknown property attributes Can't figure out what is causing it. Or what specific functionality is failing. Will update...
View ArticleDjango rest framework outputs JSONField with unicode prefix [duplicate]
This question already has an answer here: Django Rest Framework and JSONField 11 answers In my api the output of JSONField looks like so: "custom_content": "{u'key': u'value', u'hej': 1.992}", Should...
View ArticleAnswer by Christoffer for How can I apply a filter to a nested resource in...
I would do it in one of two ways. 1) Either do it through prefetch in your view: serializer = ZoneSerializer(Zone.objects.prefetch_related( Prefetch('zone_permission_set',...
View ArticleAnswer by Christoffer for How to Serialize with field from reverse related...
If you for some reason don't want to go through the through model like @Linovia suggests, then you can prefetch the through model and use a RelatedField with an overwritten to_representation. This is...
View ArticleHow to Serialize with field from reverse related model - Django rest framework
I have an api that retrieves all items related to a project through a manytomany model with an extra order field. I am now trying to serialize the items with the order value on it. One solution would...
View ArticleNew environment varibles does not show up in django app
I have added some new environment variables to my virtualenv. Added: export BROKER_URL='amqp://guest:guest@localhost/prod' to my bin/activate file. But reloading uswgi does not make the new variables...
View ArticleAnswer by Christoffer for New environment varibles does not show up in django...
The problem is that uwsgi does not pick up variables in the activate file. Guess it is not using it when run by supervisor Solution is to add the environment variable to the uwsgi ini file like so: env...
View ArticleAnswer by Christoffer for How to pass options to CloudinaryField in Django...
You can also add these kind of options to the form field like so: image = CloudinaryFileField( label='My image', options={ 'tags': "module, home", 'format': 'jpg', 'crop': 'limit', 'width': 640 },...
View ArticleGet object from list of objects without extra database calls - Django
I have an import of objects where I want to check against the database if it has already been imported earlier, if it has I will update it, if not I will create a new one. But what is the best way of...
View ArticleAnswer by Christoffer for Excluding password when extending UserCreationForm
You can just remove the password2 field in the init of the form like so: class MyUserCreationForm(UserCreationForm): def __init__(self, *args, **kargs): super(MyUserCreationForm, self).__init__(*args,...
View ArticleAnswer by Christoffer for Set DJANGO_SETTINGS_MODULE through uwsgi
My solution was to also set the DJANGO_SETTINGS_MODULE in the bin/activate file. I have added it after export PATH like so: export PATH export DJANGO_SETTINGS_MODULE='project.settings.local' You should...
View ArticleAnswer by Christoffer for django-rest-framework - autogenerate form in...
Create a serialiser class that fits the form input fields you want and set it on your APIView like so; class MyView(APIView): serializer_class = MySerializer # Used for the form in the browsable api...
View ArticleAnswer by Christoffer for Python html2text adds random \n
In the latest version of html2text do this: import html2text h = html2text.HTML2Text() h.body_width = 0 note = h.handle("<p>Hello, <a href='http://earth.google.com/'>world</a>!") This...
View ArticleAnswer by Christoffer for "YTPlayerView.h" file not found when using...
The type of quotation marks are wrong in the guide. I had the same problem with trying to import with #import “YTPlayerView.h” The problem was very difficult to see but has to do with the quotation...
View ArticleAnswer by Christoffer for In xcode 9 with iOS 11 - issue with loading of Map...
Make sure you are not using dispatch_async for the map. I had the following function that did not work in iOS11 dispatch_async(dispatch_get_main_queue(), ^{ @synchronized(_queue) { if(poppedMapView !=...
View ArticleHow can I substitute the UITabBar of UITabBarController programmatically
I need to use a subclass of the UITabBar for my project because of the following problem Why page Push animation Tabbar moving up in the iPhone X. I do not use storyboards. How can this be done...
View ArticleRedis: How to delete all keys older than 3 months
I want to flush out all keys older than 3 months. These keys were not set with an expire date. Or if that is not possible, can I then delete maybe the oldest 1000 keys?
View ArticleAnswer by Christoffer for Showing Deprecation Warnings Only for a Specific...
A good way to limit the output to only show deprecation warnings is running: python -Wd manage.py check or python -Wd manage.py test
View ArticleAnswer by Christoffer for How to merge two configmaps using volume mount in...
Another example of how this can be done for mounting multiple configmaps. This for an nginx dock were you want to both replace the main /etc/nginx/nginx.conf and the files in /etc/nginx/conn.f. This...
View ArticleSet DJANGO_SETTINGS_MODULE through uwsgi
I am trying to find the best way to split my django settings, and have the different settings files served for dev and prod. My wsgi file: from django.core.wsgi import get_wsgi_application application...
View ArticleAnswer by Christoffer for how to determine max_client_conn for pgbouncer
Like almost everyone, then you are setting your pool size way to high. Don't let your postgresql server do the connection pooling. If you do then it severely hurts your performance. The optimal setting...
View ArticleAnswer by Christoffer for HTTPS load balancer in Google Container Engine
If you are using nginx behind your loadbalancer then it's important that the default_server is returning 200 or some other 2**. That means that if you for example have a rewrite rule that returns 301...
View ArticleAnswer by Christoffer for multiple authentication backends configured and...
If you are using the build in django class PasswordResetConfirmView, then you can fix it by adding: post_reset_login_backend = "django.contrib.auth.backends.RemoteUserBackend" Something like so: from...
View ArticleRedis: How to access keys in specific keyspace
I have 2 keyspaces in my redis server: db0:keys=1,expires=0 db1:keys=36679593,expires=0 But if I run redis-cli KEYS '*'I only get keys in db0. How can i search the keys in db1?
View ArticleAnswer by Christoffer for How to access Redis log file
Found it with:sudo tail /var/log/redis/redis-server.log -n 100So if the setup was more standard that should be:sudo tail /var/log/redis_6379.log -n 100This outputs the last 100 lines of the file.Where...
View ArticleHow to access Redis log file
Have Redis setup with ruby on ubuntu server, but can't figure out how to access its log file. Tutorial says it should be here:/var/log/redis_6379.logBut can't even find the /var/ folder
View ArticleComment by Christoffer on SwiftUI TextField touchable Area
This works but only if you also add .background(.white) or whatever color you need. Please update the answer
View ArticleAnswer by Christoffer for How to store thumbnails in the same folder with...
In your settings file, if you set:IMAGEKIT_CACHEFILE_DIR = ""then the images will be saved in a subfolder of the same folder the original image is in. This instead of storing it in a /CACHE/images/...
View Article