container
11 TopicsWhat is GitHub Codespaces and how can Students access it for free?
GitHub Codespaces is a new service that is free for anyone to develop with powerful environments using Visual Studio Code. In this post, we'll cover how you can make use of this new technology and take advantage of its most powerful features.45KViews5likes5CommentsDev Database to go! The perfect database for developer
When building a new project, we don't need a big database that scales and has lots of data, but we do still need some kind of data source. Of course, it is possible to fake it and have some hardcoded value returned by an API but that takes time to create and it's not a database. In this post, I want to share a solution to have a portable, self-healing, disposable, disconnected database that doesn't require any installation.1.2KViews1like0CommentsUnable to exec /bin/bash on docker image running on ACI
I have a docker image that has /bin/bash installed and which I can connect to when running on self hosted docker/portainer. I am now trying to deploy this to ACI using: az container create --resource-group arg --cpu 1 --memory 1 --os-type Linux --name unbound-ab --location australiaeast --image docker.io/mvance/unbound --dns-name-label ab-unbound --ports 853 --gitrepo-url https://xxx.xxx/xxx.git --gitrepo-mount-path /opt/unbound/etc/unbound However, when deploying it to ACI I am unable to connect to it using the CLI: az container exec --resource-group arg --name unbound-ab --exec-command "/bin/sh" --container-name unbound-ab The exec command succeeds but returns directly to Power Shell rather than opening an interactive terminal. My expectation is a bash prompt should appear that I can interact with. Is this what should happen, and if so any pointers, please?1.3KViews0likes1CommentMSIX Virtual Container Opening Issue with command "Invoke-CommandInDesktopPackage -PackageFamilyName
Hi All, Any Idea why I am not able to open the virtual cmd.exe/regedit.exe/notepad.exe with below command line. Invoke-CommandInDesktopPackage -PackageFamilyName WS-FTP-Professional_cd0wgck2zs9pm -AppId WS-FTP-Professional -Command "cmd.exe" -PreventBreakaway Invoke-CommandInDesktopPackage : System.ArgumentException occurred when attempting to invoke the provided command in desktop package. Run Invoke-CommandInDesktopPackage -? for usage details. Additional detail: Value does not fall within the expected range.At line:1 char:1 + Invoke-CommandInDesktopPackage -PackageFamilyName WS-FTP-Professional ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+ CategoryInfo : NotSpecified: (:) [Invoke-CommandInDesktopPackage], ArgumentException + FullyQualifiedErrorId : System.ArgumentException,Microsoft.Windows.Appx.PackageCommands.InvokeCommandInDesktopPackageSolved1.6KViews0likes2CommentsSS6 A new browser revolution for extreme productivity - crazy workflow boost
Suggestion (SS): 6 Classification: WORKFLOW - PRODUCTIVITY PRIORITY IN MY OPINION: 8-10 in a scala 1 (low) - 10 (high) WARNING: this is not a suggestion for average user with normal workflows. Do you want to make a big difference compared to other browser? Do you want to make a browser for pro extreme user / business people / etc? Implement this feature and you will no 1, you even beat ghostbrowser, sessionbox workspaces, webcatalog, firefox or opera. here an example. you integrate a multi container in session box, firefox, webcatalog or ghostbrowser style, but you integrate a mix between edge and webcatalog too (or something like opera). what does this means? we can have multiple windows (or we can call it workspaces) and multiple tabs inside the same window (no need to see 100x edge windows etc.). if you want, you can use groups too, but these have huge limitations at the moment (if used only inside a normal edge). they would be useful in such workflow (especially if you integrate it in ghostbrowser style). do you use 30 tabs in 1 window and do you want to have 10 other workspace in the same panel (or maybe even 20) --> you will have 300+ tabs in totals. type of usage: 1) with multicontainer integration users can do everything; for example they can use multiple container inside the same workspace 1 (example "E" white in the picture) but even in other workspaces (you just use different accounts for each container in different workspaces) 2) use each workspace with 1 edge profile, this means if you have 10 left tabs (workspaces) you use 10 edge profiles. 3) a mix between 1-2 where you use the same edge profile on every workspaces and then you use only one account as multicontainer inside each workspace or even more complex with 9 workspace with same edge account and the last with a different account 4) use different groups in each workspaces 5) use a mix between 1-4 6) other (the limit is only in your ideas) what should workspaces offer? a different theme for each workspace, like if i install 10 different chrome extensions (new designed tab) or 10 different themes. same like what you see in the picture, where workspace 1 is white, 2 is black, (3 would be green, 4 in blue, 5....). a way to set open tabs x,y,z,w, at launch on workflow 1, without opening it on workflow 2-9 easy way to duplicate a workspace easy way to add a new workspace (for example i can just click on workspace 1 "add tabs to the right to a new workspace"). at the moment we miss such feature in normal edge too (both for left, right or other). this would be a bit similar like select x tabs, drag such tabs out by creating a windows and then click cmd m to create an union of both windows with tabs on the left. a way to import export workflows setting do we want to transfer a link from workspace 1 to 2? we just drag the link to 2.... do we want merge workspace 1 with 2? we drag w1 to w2 and you create a merged workspace (if needed even with a notification "are you sure"). ability to open history selection directly in a new workspace, same for bookmarks ability to pause loading tab for a workspace at all, but you still keep all tabs in the bar ability to add incognito inside a workspace. if i drag drop 30 links from apple notes to the icon +, below the last workspace, you create a new workspace with 30 tabs same like 11, when i do cmd c and then i do cmd v other the + ability to create premade workspace for microsoft products a way to use a workspace only for collections workspace store, where people can share it (if this is limited only for a specific configuration of open tabs) workspace only where we find panel like /setting /extension /download, etc. ability to add personal images to the workspace icon ... if this with multiple edge profiles is to complex, you can do it with 1 edge profile by adding all what i told you before. --------------- All my other suggestions are here: https://link.ws/edgesuggestions Suggestions I liked from other user here: https://link.ws/othersuggestions Chromium suggestions list 1: https://link.ws/chrome1 and 2: https://link.ws/chrome2 From end 2020-10 all suggestions are written on both Edge and Chrome at the same time, suggestions before 2020-10 are available only on Chrome. *to avoid a ban from Google, I submit only limited post pro week.1.3KViews0likes0CommentsGet started with Docker and Containers.
Docker solves a lot of problems like: - Creating a reproduceable environment, great if you want Dev, Staging and Pro environment to look the same. - Helps with onboarding. Onboarding developers used to take weeks, before they had installed all the programs, all the libraries, configured everything correctly. - Works on my machine AND in the Cloud. The Docker container is a black box that runs the same everywhere because you specify what's in there from, variables, libs, your app, and hosting layer. - Microservice architecture, a lot of system today are split up into many small pieces APIs. To build all of these small pieces you need a container technology like Docker. As a new developer, learning about using containers is a must as so many Companies use it and it's used evreywhere from Web, to ML to IoT. Here's a collection of tutorials that takes you from the very beginning.8KViews3likes0CommentsUsing Visual Studio Code from a docker image locally or remotely via VS Online
A development container is a running Docker container with a well-defined tool/runtime stack and its prerequisites. The Remote - Containers extension in the Remote Development extension pack allows you to open any folder mounted into or inside a dev container and take advantage of VS Code's full development feature set.24KViews1like1CommentHigh Performance Real time object detection on Nvidia Jetson TX2.
Real time object detection on my Nvidia Jetson TX2. The real time term here simply means, low latency and high throughput. It's a very loosely defined term, but it's used here in contrast to the store-and-process pattern, where storage is used as an interim stage.16KViews1like0Comments