Cannot run SQLiteStudio 3.2.1 on Mac OS Catalina? Stuck at choose language - macos-catalina

I am a beginner. I've searched online for others with a similar issue but didn't get results. I am trying to learn SQL and the course I'm following is using SQLiteStudio.
I have downloaded the *.dmg file and installed but upon running the app, it asks to choose a language. I choose English(US) and say OK. it prompts again for language. over and over again. No matter what language I choose it will not progress.
I have deleted the app files and reinstalled, same issue.
https://github.com/pawelsalawa/sqlitestudio/releases/tag/3.2.1 is the download link and i am downloading InstallSQLiteStudio-3.2.1.dmg (installer) file.
I am on Mac OS Catalina, 10.15.1.

Thanks to Pawel we realized this was a permissions issue on Mac.
I reset the permissions on my home folder and this solved the issue.
I followed the steps in the reset permissions section of this link: apple support - reset home permissions
Posting the answer in case anyone else has the same issue.

For me it was not working, clicking on the lock 🔒 in Privacy & Security then allow application to be installed from Anywhere. It was still showing a window giving two choices Move to Trash or Cancel, because the software was judged suspicious.
So I used brew and it worked fine:
brew install --cask sqlitestudio

Related

Dango bootstrap styling shows up fine on dev-box, not on production

I've got a Django site which uses the "django-machina" forum software, which in its latest incarnation apparently uses Bootstrap4 styling.
After installing the package according to directions, it looks beautiful on my development box. But, when I deploy exactly the same software on production, Bootstrap obviously isn't running because nothing is properly styled.
There are no 404's and no console messages. *(Yes, I remembered to run manage.py collectstatic ...) There are some stylesheets complaints from Firefox but they're identical in both cases. But ... the display is not!
Can anyone suggest what I might do in order to solve this problem? I'm stumped!
Well, once again I answered my own question!
I correctly guessed that, since I was maintaining the remote site from my own box using rsync, there might be some garbage left over on the remote side that wasn't being swept-up. (I can't use rsync --delete for fear of smashing directories that contain images and uploaded materials.) I guess it would probably be smarter for me to start using an external repo so that git can do for me what it's designed to do ...
But anyway, when I deleted selected directories containing the central and most-often updated directories, then used rsync to replace them with clean copies, the interference went away and production now looks correct.

Google cloud in browser ssh download dysfinctional

I am troubled with my in browser ssh download functionality of google cloud platform. It was working quite well until recently when I started to observe un expected behavour. Everytime I have attempted to download a file the progress bar shows as if something is downloading but after completing nothing is found in the downloads folder. I have tried to switch and log onto another os partition on my local machine. But still experience the same problem even when I changed browser program nothing seems working. Thanks in advance!
Google experienced an issue around the same time you reported the error. It has since been marked as resolved.
Are you still experiencing the same issue?
If that is the case, you can report it in the Issue Trackers platform.

Google Drive is showing my application as virus?

I developed my application with Qt 5.2.1 and MinGW compiler.The installer is created with NSIS and doesnt even require admin privilege.
I use blogger as my application's website, and post Google Drive links to download the setup files.
Suddenly Drive is now showing my application as a virus, even though I checked with virustital.com and the Windows anti-virus software.
I have not received any response to the post I submitted on their forum.
So I would like to know if there is any known common cause for this problem and whether that can be resolved.
PS: I have previously used the same Google services for another software that I developed few years ago, but never ran into such issues.
This is probably false-positive alarm.
Sometimes NSIS generated installer is recognized as virus (which is wrong).
Write to the AV company (I am not sure which AV software G drive uses) and report this problem - they should whitelist your software.
Sometimes simply rebuilding the installer helps too :)
Or my last idea is to remove 'dangerous' code from installer: many times inetC and various other internet calls are suspicious.

Issue while logging in with VMware vSphere client 5.5

I am getting below error while logging in with VMware vSphere Client 5.5
"The type initializer for 'VirtualInfrastructure.Utils.ClientsXml' threw an exception."
Just recently had this. Try to right click the shortcut and "run as administrator". This worked for me.
To avoid having to do this all the time. Set the shortcut to "Run as administrator". Even if a user launches it. I should still start without prompting for an administrator ID.
I got the same problem this morning, don't know what's causing the issue. Vsphere client was working fine last week, only changes was backup by Veeam during the weekend.
My solution is open the website of your ESXi server, click the "Download Vsphere client" link to download the latest version 5.5 client and upgrade the existing client.
Check your disk space and/or file permissions of your temporary directory.
VMWare may be unable to create necessary files in your %temp% directory which 'will' cause the exact error your experiencing.
I had this problem recently, it happened because I had updated the user's TEMP file location in Control Panel - System - Advanced System Settings so TEMP files were stored on e: drive, but the temp folder path on the e: drive did not exist. Creating the correct folder structure on e drive fixed the problem
Yes you need to Run as Administrator, This is due to a Permissions access problem by simply double clicking it, even in an Administrative level profile.

Django Development Environment Setup Questions

I'm trying to set up a good development environment for a Django project that I will be working on from two different physical locations. I have two Mac machines, one at home and one at work that I do most of my development on. I currently host a Ubuntu virtual machine on one of the machines to host the Django environemnt, install DropBox on it, and edit source code from my Mac. When I save the code file, the changes get synced over DropBox to the Ubuntu VM and the Django development server automatically restarts because of the change. This method has worked well in the past, but I am starting to use DropBox for a lot of other things now and don't want all of that to be downloaded on every virtual machine I use. Plus, I want to start using Eclipse + PyDev to be able to debug code and have code completion. Currently, I use TextEdit which is great, but doesn't support debugging or completion.
So what are my options? I thought about setting up a Parallels VM on a thumb drive that has my entire environment on it (Eclipse included), but that has its own problems. Any other thoughts?
Here is the environment I set up and it has the components you are after. I have used pydev as well and it works but I prefer Komodo.
Things which I think you are missing:
An SCM - Using Dropbox works but there are some real shortcomings by not using a real version control system. Examples include reverting changes, branching, merging, etc. I agree with Simon
Using a virtualenv will really help when developing on multiple platforms.
I do ALL of this on my Mac:)
HTH