Cloud Shell Technical Bug - Has anyone else experienced this? - google-cloud-platform

I use two DELL U2718Q monitors. One of them is placed horizontal and the other is vertical. When I open Cloud Shell in horizontal and let's say start deploying my app on App Engine. File uploading and service update will take some time and while on this position I move my browser from horizontal display to vertical, Cloud Shell goes crazy. Loading line starts moving down and everything moves to random position. This happens to me every time and it is pretty annoying. Below is a picture of what happens after App Engine loading finishes.
This is just the part that does not contain sensitive information
Has anyone experienced something like this?
If yes please let me know what is the issue.
EDIT
I have created an issue in Issue Tracker. Please vote so that they could fix it faster.

Related

Is there a way to update stock android file manager (com.google.android.documentsui)?

Due to some reasons (I couldn't figure out why), my google default file picker has stopped working, it just crashed like end of the world.
After several attempts to fix it, i.e. clear cache & storage, force stop the app and its services, none actually helped. So I proceeded to uninstall the app updates, still, it doesn't work.
Is there anywhere I can download and update it? It ain't in Play Store.

Not able to run cell on a jupyterlab notebook Google cloud ai platform

I am running 2 instances under Google AI Platform, which basically launches 2 VM instances to run jupyter lab. I have been happily making notebooks on both VMs. I shutdown both VMs for the day...
What's strange is that next morning, notebook from one VM will launch but when I run any cell containing simple things like "import pandas", it never return result and hang the whole thing (with a * where the cell # would have generated). I create a whole new notebook and just do a simple print("hello"). it also never returns. I restarted the instance a few times and still doesn't work. What I noticed is the "dot" on the top right corner is filled black. I think it should be white when the kernel is restarted. So there could be a problem with the kernel.
Any ideas what could go wrong? I don't even know where to debug this. The strange thing is the other VM still worked. I don't want to do anything drastic like re-creating a new VM, since I like to be able to fix this for a known cause.
Anyone out there experienced same thing?
In case you didn't attempt this, I would try refreshing the notebook window after restarting the machine.

Start Scene without clicking start button on amazon sumerian

I am beginner in AWS Sumerian, I want to start scene without clicking start button.
as shown in the image.
please help me thanks in advance.
You need to set an initial state in your state diagram, which may be the same as what is run when you press the start button. However if your start button runs certain scripts like speech, you may need to begin with an AWS SDK ready action, then transition.
Since I don't know your project, here is a sample tutorial from Amazon that you can walk through to see how it works: Sumerian Speech tutorial, will speak when run using initial state
And here are more: Sumerian Tutorials

Can't access to Machine Learning console in Gcloud

I am actually experimenting with the new Machine Learning API on Google cloud. All tutorials work great, Machine Learning API is activated, I can train models and access the status of the Jobs in the command line. But for some reason, I can't open the page https://console.cloud.google.com/ml/ to manage my models and jobs online.
Also, I don't have the Machine Learning button in the "Product and Services" column on the left from https://console.cloud.google.com/home/dashboard.
Even if I can do without, I wish I could have access to this console to make my work easier.
I found the same question here: Where is the Google Cloud ML Console UI? but the problem seems to be fixed since one of my colleague have access to it. Is there something to update?
I think the fix to enabling public access to all is in the process of rolling out. Sorry for the inconvenience and thanks for patience!
Is it possible that your colleague was a member of our alpha program, and was previously whitelisted to the console functonality?

Malware/Adware on site deployed on AWS Elasticbeanstalk

I guess the title says it all.
I noticed some ads were popping up on a client's site we are currently developing. It only shows on this particular site. Not any other site. It is very annoying to put it mildly.
I thought removing it would be as easy as setting up a new environment on ElasticBeanstalk for it. I was wrong!
I have started a fresh instance for the application, scanned the project folder for malware before deploying, emptied the content of s3 bucket for static files. All these made no difference. The adware/malware is still there.
It has been driving me nuts for the past few days. Does anyone know how to resolve this kind of problem?
Mark B pointed me in the right direction.
I used inspect element to check the network processes of pages showing the Malware/Adware. It was after this i noticed a few asynchronous posts going to http://api.adsrun.net/post. Of course, i'm not making any post calls to this link. So i decided to inspect my JavaScript files as seen in View Page Source. Fortunately, it was in the last few lines of the second file i inspected. Immediately i deleted this file, normalcy returned to my web application.
It has been a very frustrating several hours. Thanks once again, Mark B for your suggestion.