Big Blue Button version 0.81 Sever Setup and Devlopment from source code - bigbluebutton

** I have already download Big Blue Button VM image and successfully execute it **.
Now I want to build Big Blue Button from source code, setup my own big blue button server and compile each and every module like a real developer.
I already surf the problem in the Big Blue Button official website. I got some links which are helpful. But hardly managed to get the appropriate link.
It will be helpful if anybody provide me appropriate instruction for setup and run Big Blue Button from source code.
Note: I am working for Big Blue Button version 0.81.

Related

VS Code 1.15.1 The Run Code Toolbar Not Appear in Green Color as It Used to

I need a help. I read VSC Debugging doc and about launch.json. Nothing has helped me so far when searching for an answer on this specific issue in STO and VS Code documentation.
I've been annoyed, frustrated by this little bug in my Visual Studio Code 1.15.1. I worked on python project and things were good and with the run code triangle toolbar on the top right appeared in green color. Then I worked on C project. But when I wanted to go back working on a python project, the run code toolbar did not appear in green color like it used to. I've never changed anything in the setting.
the run code toolbar/button appeared in green color
the run code toolbar/button not appeared in green color
Do I need to install AutoLaunch 2.0.3 (Automatically run tasks in tasks.json or launch config in launch.json ) in order to get the green color back on the Run Code button/toolbar?
I just want simply the green color back. What should I do to get that green color back on the run code triangle toolbar? What setting I should change? I was thinking uninstalling my VS Code and reinstalling it should solve this issue.
Thanks in advance.

Accessing SDK Wizard/installing additional drivers in MCUXpresso after initial project creation

Is there a way to re-access the SDK Wizard after the initial time you configure a project? Basically, at that point it lets you select which drivers you want and includes them in a drivers folder. However, as time went on I found that I need to add more drivers than I originally planned for. How do I select additional drivers to incorporate from the SDK after initial project creation?
I found it the information at the following link, in "add/remove components":
https://mcuoneclipse.com/2017/11/25/eclipse-mcuxpresso-ide-10-1-with-integrated-mcuxpresso-configuration-tools/
If the link breaks -
In the Project window view, there is a small icon that looks like a yellow square with perpendicular lines through it.
Click on the project so it is highlighted, then you will be able to click the square icon which says "Manage SDK Components" if you hover over it.
Once you click that, you can select/deselect components you wish to add/remove, respectively.

Creating activitybar Icons for VS Code

I have been trying numerous editors, from Inkscape, to online converters, to MS store apps, etc.
All I'm trying to do is find an easy way to create either transparent PNG files or SVG files for the activitybar icon inside of VS Code for an extension I'm working on.
Everything I've tried either totally warps the dimensions of what I create and seems to blow the image way up inside the activity bar, even though the files I'm saving as PNG are all 128px x 128px with 32 bit depth, same as another that ships with examples from https://github.com/Microsoft/vscode-extension-samples/tree/master/tree-view-sample
What I see in VS Code after specifying the path in the extension package.json:
What I am trying to get it to look like:
I've tried using SVG viewer plugins for VS Code as well, and sometimes the SVG's I've used don't even show up, even though an item does exist in the activity bar when I hover over the position it should be in.
Any modicum of help would be appreciated.

ndepend - no dependency graph/metrics after analysis

I can't get any form of interactive graph in VisualNDepend. There is only a black screen.
I'm using Visual NDepend v1.9.
I created a project, selected my sln and clicked on Run Analysis and Report. I was presented with several graphs in html but they were low-res. Nex to the graphs were this note:
It is recommended to use the NDepend interactive dependency Graph and interactive Dependency Matrix for an in-depth exploration of the actual architecture of your code.
I opened VisualNDepend and checked the Dependency Graph and Dependency Matrix tabs which were empty. I went back to dashboard tab and clicked Run Analysis on Current Project but the tabs still displayed nothing. At the bottom right there is a red circle which when clicked, shows analysis complete x mins ago.
How do I display any form of graphs with ndepend? I tried on several slns.
Thanks
My bad.
After going through every menu item, I found that I had to explicitly click on graph->view dependency graph and matrix->view dependency matrix to actually see the stuff.

Xcode 7 permanent code coverage overlay

I've just tried out Xcode 7's support for generating and displaying code coverage data from Swift code. It works, but I have to move my mouse over the little numbers on the side to see the overlay in the editor, and I have to do it individually for each function.
Is there a way to have Xcode show the coverage overlays throughout the code without having to hover the mouse pointer somewhere and to have it show the uncovered code with a red overlay? That's how coverage tools usually do it and I think it's a better approach than those little number, because you can see at a glance what parts of the code you haven't tested yet.
If Xcode can't do it, are there third-party tools that can show the coverage in that way and can read profdata-files?
Checkout Codecov here an example project: https://github.com/codecov/example-swift
Thank you!