How to add extensions to VS Codium (open source version) from github repos - vscodium

Lot of VSCode extensions are missing in VSCodium. Looking for a simple way to add the missing extensions from their github repos. Does something like this exist?
I've looked for similar answers but nothing explains a simple way to do this

Found the answer after posting the question
Find the vsix file at https://marketplace.visualstudio.com/, download it
cd ~/Downloads
codium --install-extension clara-copilot-0.0.1.vsix

Related

Using Quick Install in Visual Studio doesn't actually add the packages to your project

Hello I'm trying to use the Visual Studio extension Quick Install Package to install packages via bower and npm. One example is angular-loading-spinner
When I give the command using the interface, I see that the package.json file is updated and or the bower.json file is updated with the package dependency, but I'm still unable to actually reference the packages as instructed in my html using the tags. No actual files are added to the project, so I feel like I'm really missing something here, or simply don't understand what this package installer is actually meant to do. There doesn't seem to be any clear tutorial on this I can find online, or any good information. It just all assumes it works fine. Can anyone please advise? Thanks]1
Mike, I'm glad to know that my answer was the correct. For future users that have the same concern, they need to look at the folder node_modules to find out all the libraries installed.
This was put in the node_modules folder as pointed out by Jonathan Brizio. The issue was that the files were hidden and had to be included in the project.

Hangfire : The method UseSqlServerStorage is missing

I'm trying to install HangFire for a ASP.NET Code Project.
When I follow then official doc (https://www.hangfire.io/blog/2016/07/16/hangfire-1.6.0.html) or other link ressources (http://www.dotnetjalps.com/2017/04/aspnet-core-hangfire-integation.html), it's sounds clear. Add this
services.AddHangfire(config=>config.UseSqlServerStorage(Configuration.GetConnectionString("MyConnectionString")));
But it doesn't work. This extension method doesn't exist. Am I miss something ?
You might be missing the HangFire.SqlServer package. Once I added that to my project it worked.
You can find the most recent version of the package here.
https://www.nuget.org/packages/HangFire.SqlServer/
So, I found the answser ..
I had to delete HangFire package, close my Visual Studio 2017 solution and clean the obj and bin folder.
Then, I reopen it, add HangFire.AspNetCore and HangFire.SQLServer packages. Then it works.
I had a similar issue and it was caused because I already had GlobalConfiguration in my Startup and it was referencing System.Web.Http.GlobalConfiguration. Now I thought Hangfire would add this UseSqlServerStorage() as an extension method, like Swagger does for example, but instead Hangfire brings its own version of this file.
Referencing it directly worked for me:
Hangfire.GlobalConfiguration.Configuration.UseSqlServerStorage("connection_string");

I'm struggling with SDL2 installation on Xcode 6

I'm working on a little project and I'm trying to use SDL2 library! I installed the SDL2.framework successfully in my library/framework folder. Then when I tried to link my headers and my framework in Xcode by adding the Library/Framework path for the framework and /Library/Framework/SDL2.framework/Headers for the headers in my app settings! Then I include
. #include
Afterward when I run the program there is an error but not about the fact it doesn't find headers.
Do you guys have a few tips about this?
Thank you
PS : sorry for the eventual English mistake
edit: i finally manage to run the program (i forgot to link binary) but now Xcode shut down right after it
I finally could install it for those who are struggling with this !
1. Download SDL2 source code on the website.
2. Compile the framework and copy SDL2.framework in the Library/Framework directory.
3. Create a classic Xcode project in C. In build settings. Then in Build Phases add SDL2.framework in the "Link binary with libraries" Indicate for the headers search paths : Library/Frameworks/SDL2.framework/Headers and Library/Frameworks for the framework search paths.
Hope this can help some of you.
Thank you all for the help !
try the following tutorial to see if it helps - http://zamma.co.uk/setup-sdl2-in-xcode-osx/

How can I get a bleeding edge version of angular.js from Github?

Obviously I can clone the repository, but that's not what I'm after...
If you visit angularjs.org they offer a stable and unstable download of a single, final angular.js file but if you clone the repository you get a whole folder structure (which isn't useful to me).
My question is – how do I get the latest code from Github into this single-file (i.e. angular.min.js) format?
The github repository in question is: https://github.com/angular/angular.js
As is already described in the README:
grunt package
Although if you need more detailed descriptions on how to build it, the official documentation offers a more comprehensive guide that also explains the dependencies.

Eclipse Juno 4.2 Google Plugin not installing: Cannot complete install because one or more required items could not be found

This is the error message I get:
Cannot complete the install because one or more required items could not be found.
Software being installed: Google App Engine Tools for Android 3.1.0.v201208080121-rel-r42 (com.google.gdt.eclipse.mobile.android.feature.feature.group 3.1.0.v201208080121-rel-r42)
I've tried numerous things including manually downloading the file from here and also I snooped around StackOverflow and I tried just moving all the plugins from the manual download into the plugins folder of my Eclipse. That didn't help me though because my perspective did not update with the plugins and I couldn't find the "Create New Web Application" option. I've also read some things about the XML file being wrong but I can't find it and those were for other Eclipse versions so I don't know if it applies to me.
I also tried excluding Google App Engine Tools for Android 3.1.0 but then it just says the next one in the list can't be found.
I'll be more than happy to provide anymore information. I am running Eclipse Juno 4.2 and Java 1.7 (I also have 1.6 installed though). I am using a Windows 7 PC. Thank you guys so much! I just want to code :[
I did not work for me with this URL: http://dl.google.com/eclipse/plugin/4.2
It worked with this one: http://dl.google.com/eclipse/plugin/3.8
I just changed 4.2 to 3.8.
I faced a similar problem I was downloading with 120 kb/s every time the download breaks down
when I moved to another place and downloaded the plugin with highest speed 400 kb/s It successfully downloaded and no problems found
You might think that issue is out of logic but that what I reached so far
Hope that Helps
I know this is a very old question but recently I found a solution to my problem so I am going to personally update the answer. For some reason, Eclipse Classic 4.2.2 Juno does not come with some of the required packages. After talking to some people, they recommended simply downloading Eclipse IDE for Java EE Developers which simply comes with most of the packages necessary. From there, it just worked!
My friend also mentioned you could try to manually download the packages on Eclipse Classic but that is far more of a hassle.
Hope this helps!

Resources