├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── generate.js ├── package.json ├── result.csv └── tags ├── ailab.md ├── api.md ├── applicationinsights.md ├── archive.md ├── aspnet.md ├── assembly.md ├── azuredatastudio.md ├── batchfile.md ├── beginnerfriendly.md ├── commandlineexperiences.md ├── communityprojects.md ├── containers.md ├── cpp.md ├── csharp.md ├── demosandpresentations.md ├── directx.md ├── docker.md ├── docs.md ├── documentation.md ├── erlang.md ├── firsttime.md ├── frameworks.md ├── go.md ├── graphics.md ├── groovy.md ├── haskell.md ├── healthvault.md ├── html.md ├── internetexplorer.md ├── internetofthings.md ├── ios.md ├── java.md ├── javascript.md ├── kinect.md ├── kubernetes.md ├── lisp.md ├── llvm.md ├── logstash.md ├── machinelearning.md ├── macos.md ├── media.md ├── microsoftazure.md ├── microsoftdocs.md ├── microsoftdos.md ├── microsoftdynamics.md ├── microsoftedge.md ├── microsoftgraph.md ├── microsoftopentechnologies.md ├── microsoftresearch.md ├── mobile.md ├── monaco.md ├── msdn.md ├── msdos.md ├── napajs.md ├── net.md ├── nodejs.md ├── nokiaasha.md ├── nokiax.md ├── nuget.md ├── odata.md ├── office.md ├── onedrive.md ├── otherprojects.md ├── php.md ├── powershell.md ├── project-everest.md ├── pwa.md ├── python.md ├── qsharp.md ├── qtandotherprojects.md ├── reactiveextensions.md ├── researchprojects.md ├── ruby.md ├── rust.md ├── samples.md ├── scala.md ├── sdks.md ├── security.md ├── sharepoint.md ├── shell.md ├── spark.md ├── thali.md ├── tipsandrecipes.md ├── tools.md ├── typescript.md ├── uwp.md ├── visualstudio.md ├── vscode.md ├── websites.md ├── windows.md ├── windowsphone.md ├── windowsserver.md ├── winfile.md ├── winjs.md ├── xamarin.md └── yammer.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## Contributing 2 | 3 | We take pull requests to add information to tags! Feel free to fork this repo, and add a pull request for any tag you would like. 4 | 5 | If you are adding a new tag, note that we ask that the file name be all lower case. 6 | 7 | All file headers must include a name, display name., and description in a comment block at the top (jeckyll style): 8 | 9 | ``` 10 | --- 11 | name: aspnet 12 | displayName: ASP.NET 13 | description: The .NET platform for making web based applications 14 | --- 15 | ``` 16 | 17 | Wiki content goes below this, and is optional for initial commits. 18 | 19 | There is a simple utility for generating tag data in node. It is in the `generate.js` file. Replace the file name with a CSV file of your choice, and run node generate. 20 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Attribution 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More_considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution 4.0 International Public License 58 | 59 | By exercising the Licensed Rights (defined below), You accept and agree 60 | to be bound by the terms and conditions of this Creative Commons 61 | Attribution 4.0 International Public License ("Public License"). To the 62 | extent this Public License may be interpreted as a contract, You are 63 | granted the Licensed Rights in consideration of Your acceptance of 64 | these terms and conditions, and the Licensor grants You such rights in 65 | consideration of benefits the Licensor receives from making the 66 | Licensed Material available under these terms and conditions. 67 | 68 | 69 | Section 1 -- Definitions. 70 | 71 | a. Adapted Material means material subject to Copyright and Similar 72 | Rights that is derived from or based upon the Licensed Material 73 | and in which the Licensed Material is translated, altered, 74 | arranged, transformed, or otherwise modified in a manner requiring 75 | permission under the Copyright and Similar Rights held by the 76 | Licensor. For purposes of this Public License, where the Licensed 77 | Material is a musical work, performance, or sound recording, 78 | Adapted Material is always produced where the Licensed Material is 79 | synched in timed relation with a moving image. 80 | 81 | b. Adapter's License means the license You apply to Your Copyright 82 | and Similar Rights in Your contributions to Adapted Material in 83 | accordance with the terms and conditions of this Public License. 84 | 85 | c. Copyright and Similar Rights means copyright and/or similar rights 86 | closely related to copyright including, without limitation, 87 | performance, broadcast, sound recording, and Sui Generis Database 88 | Rights, without regard to how the rights are labeled or 89 | categorized. For purposes of this Public License, the rights 90 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 91 | Rights. 92 | 93 | d. Effective Technological Measures means those measures that, in the 94 | absence of proper authority, may not be circumvented under laws 95 | fulfilling obligations under Article 11 of the WIPO Copyright 96 | Treaty adopted on December 20, 1996, and/or similar international 97 | agreements. 98 | 99 | e. Exceptions and Limitations means fair use, fair dealing, and/or 100 | any other exception or limitation to Copyright and Similar Rights 101 | that applies to Your use of the Licensed Material. 102 | 103 | f. Licensed Material means the artistic or literary work, database, 104 | or other material to which the Licensor applied this Public 105 | License. 106 | 107 | g. Licensed Rights means the rights granted to You subject to the 108 | terms and conditions of this Public License, which are limited to 109 | all Copyright and Similar Rights that apply to Your use of the 110 | Licensed Material and that the Licensor has authority to license. 111 | 112 | h. Licensor means the individual(s) or entity(ies) granting rights 113 | under this Public License. 114 | 115 | i. Share means to provide material to the public by any means or 116 | process that requires permission under the Licensed Rights, such 117 | as reproduction, public display, public performance, distribution, 118 | dissemination, communication, or importation, and to make material 119 | available to the public including in ways that members of the 120 | public may access the material from a place and at a time 121 | individually chosen by them. 122 | 123 | j. Sui Generis Database Rights means rights other than copyright 124 | resulting from Directive 96/9/EC of the European Parliament and of 125 | the Council of 11 March 1996 on the legal protection of databases, 126 | as amended and/or succeeded, as well as other essentially 127 | equivalent rights anywhere in the world. 128 | 129 | k. You means the individual or entity exercising the Licensed Rights 130 | under this Public License. Your has a corresponding meaning. 131 | 132 | 133 | Section 2 -- Scope. 134 | 135 | a. License grant. 136 | 137 | 1. Subject to the terms and conditions of this Public License, 138 | the Licensor hereby grants You a worldwide, royalty-free, 139 | non-sublicensable, non-exclusive, irrevocable license to 140 | exercise the Licensed Rights in the Licensed Material to: 141 | 142 | a. reproduce and Share the Licensed Material, in whole or 143 | in part; and 144 | 145 | b. produce, reproduce, and Share Adapted Material. 146 | 147 | 2. Exceptions and Limitations. For the avoidance of doubt, where 148 | Exceptions and Limitations apply to Your use, this Public 149 | License does not apply, and You do not need to comply with 150 | its terms and conditions. 151 | 152 | 3. Term. The term of this Public License is specified in Section 153 | 6(a). 154 | 155 | 4. Media and formats; technical modifications allowed. The 156 | Licensor authorizes You to exercise the Licensed Rights in 157 | all media and formats whether now known or hereafter created, 158 | and to make technical modifications necessary to do so. The 159 | Licensor waives and/or agrees not to assert any right or 160 | authority to forbid You from making technical modifications 161 | necessary to exercise the Licensed Rights, including 162 | technical modifications necessary to circumvent Effective 163 | Technological Measures. For purposes of this Public License, 164 | simply making modifications authorized by this Section 2(a) 165 | (4) never produces Adapted Material. 166 | 167 | 5. Downstream recipients. 168 | 169 | a. Offer from the Licensor -- Licensed Material. Every 170 | recipient of the Licensed Material automatically 171 | receives an offer from the Licensor to exercise the 172 | Licensed Rights under the terms and conditions of this 173 | Public License. 174 | 175 | b. No downstream restrictions. You may not offer or impose 176 | any additional or different terms or conditions on, or 177 | apply any Effective Technological Measures to, the 178 | Licensed Material if doing so restricts exercise of the 179 | Licensed Rights by any recipient of the Licensed 180 | Material. 181 | 182 | 6. No endorsement. Nothing in this Public License constitutes or 183 | may be construed as permission to assert or imply that You 184 | are, or that Your use of the Licensed Material is, connected 185 | with, or sponsored, endorsed, or granted official status by, 186 | the Licensor or others designated to receive attribution as 187 | provided in Section 3(a)(1)(A)(i). 188 | 189 | b. Other rights. 190 | 191 | 1. Moral rights, such as the right of integrity, are not 192 | licensed under this Public License, nor are publicity, 193 | privacy, and/or other similar personality rights; however, to 194 | the extent possible, the Licensor waives and/or agrees not to 195 | assert any such rights held by the Licensor to the limited 196 | extent necessary to allow You to exercise the Licensed 197 | Rights, but not otherwise. 198 | 199 | 2. Patent and trademark rights are not licensed under this 200 | Public License. 201 | 202 | 3. To the extent possible, the Licensor waives any right to 203 | collect royalties from You for the exercise of the Licensed 204 | Rights, whether directly or through a collecting society 205 | under any voluntary or waivable statutory or compulsory 206 | licensing scheme. In all other cases the Licensor expressly 207 | reserves any right to collect such royalties. 208 | 209 | 210 | Section 3 -- License Conditions. 211 | 212 | Your exercise of the Licensed Rights is expressly made subject to the 213 | following conditions. 214 | 215 | a. Attribution. 216 | 217 | 1. If You Share the Licensed Material (including in modified 218 | form), You must: 219 | 220 | a. retain the following if it is supplied by the Licensor 221 | with the Licensed Material: 222 | 223 | i. identification of the creator(s) of the Licensed 224 | Material and any others designated to receive 225 | attribution, in any reasonable manner requested by 226 | the Licensor (including by pseudonym if 227 | designated); 228 | 229 | ii. a copyright notice; 230 | 231 | iii. a notice that refers to this Public License; 232 | 233 | iv. a notice that refers to the disclaimer of 234 | warranties; 235 | 236 | v. a URI or hyperlink to the Licensed Material to the 237 | extent reasonably practicable; 238 | 239 | b. indicate if You modified the Licensed Material and 240 | retain an indication of any previous modifications; and 241 | 242 | c. indicate the Licensed Material is licensed under this 243 | Public License, and include the text of, or the URI or 244 | hyperlink to, this Public License. 245 | 246 | 2. You may satisfy the conditions in Section 3(a)(1) in any 247 | reasonable manner based on the medium, means, and context in 248 | which You Share the Licensed Material. For example, it may be 249 | reasonable to satisfy the conditions by providing a URI or 250 | hyperlink to a resource that includes the required 251 | information. 252 | 253 | 3. If requested by the Licensor, You must remove any of the 254 | information required by Section 3(a)(1)(A) to the extent 255 | reasonably practicable. 256 | 257 | 4. If You Share Adapted Material You produce, the Adapter's 258 | License You apply must not prevent recipients of the Adapted 259 | Material from complying with this Public License. 260 | 261 | 262 | Section 4 -- Sui Generis Database Rights. 263 | 264 | Where the Licensed Rights include Sui Generis Database Rights that 265 | apply to Your use of the Licensed Material: 266 | 267 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 268 | to extract, reuse, reproduce, and Share all or a substantial 269 | portion of the contents of the database; 270 | 271 | b. if You include all or a substantial portion of the database 272 | contents in a database in which You have Sui Generis Database 273 | Rights, then the database in which You have Sui Generis Database 274 | Rights (but not its individual contents) is Adapted Material; and 275 | 276 | c. You must comply with the conditions in Section 3(a) if You Share 277 | all or a substantial portion of the contents of the database. 278 | 279 | For the avoidance of doubt, this Section 4 supplements and does not 280 | replace Your obligations under this Public License where the Licensed 281 | Rights include other Copyright and Similar Rights. 282 | 283 | 284 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 285 | 286 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 287 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 288 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 289 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 290 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 291 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 292 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 293 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 294 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 295 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 296 | 297 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 298 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 299 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 300 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 301 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 302 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 303 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 304 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 305 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 306 | 307 | c. The disclaimer of warranties and limitation of liability provided 308 | above shall be interpreted in a manner that, to the extent 309 | possible, most closely approximates an absolute disclaimer and 310 | waiver of all liability. 311 | 312 | 313 | Section 6 -- Term and Termination. 314 | 315 | a. This Public License applies for the term of the Copyright and 316 | Similar Rights licensed here. However, if You fail to comply with 317 | this Public License, then Your rights under this Public License 318 | terminate automatically. 319 | 320 | b. Where Your right to use the Licensed Material has terminated under 321 | Section 6(a), it reinstates: 322 | 323 | 1. automatically as of the date the violation is cured, provided 324 | it is cured within 30 days of Your discovery of the 325 | violation; or 326 | 327 | 2. upon express reinstatement by the Licensor. 328 | 329 | For the avoidance of doubt, this Section 6(b) does not affect any 330 | right the Licensor may have to seek remedies for Your violations 331 | of this Public License. 332 | 333 | c. For the avoidance of doubt, the Licensor may also offer the 334 | Licensed Material under separate terms or conditions or stop 335 | distributing the Licensed Material at any time; however, doing so 336 | will not terminate this Public License. 337 | 338 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 339 | License. 340 | 341 | 342 | Section 7 -- Other Terms and Conditions. 343 | 344 | a. The Licensor shall not be bound by any additional or different 345 | terms or conditions communicated by You unless expressly agreed. 346 | 347 | b. Any arrangements, understandings, or agreements regarding the 348 | Licensed Material not stated herein are separate from and 349 | independent of the terms and conditions of this Public License. 350 | 351 | 352 | Section 8 -- Interpretation. 353 | 354 | a. For the avoidance of doubt, this Public License does not, and 355 | shall not be interpreted to, reduce, limit, restrict, or impose 356 | conditions on any use of the Licensed Material that could lawfully 357 | be made without permission under this Public License. 358 | 359 | b. To the extent possible, if any provision of this Public License is 360 | deemed unenforceable, it shall be automatically reformed to the 361 | minimum extent necessary to make it enforceable. If the provision 362 | cannot be reformed, it shall be severed from this Public License 363 | without affecting the enforceability of the remaining terms and 364 | conditions. 365 | 366 | c. No term or condition of this Public License will be waived and no 367 | failure to comply consented to unless expressly agreed to by the 368 | Licensor. 369 | 370 | d. Nothing in this Public License constitutes or may be interpreted 371 | as a limitation upon, or waiver of, any privileges and immunities 372 | that apply to the Licensor or You, including from the legal 373 | processes of any jurisdiction or authority. 374 | 375 | 376 | ======================================================================= 377 | 378 | Creative Commons is not a party to its public 379 | licenses. Notwithstanding, Creative Commons may elect to apply one of 380 | its public licenses to material it publishes and in those instances 381 | will be considered the “Licensor.” The text of the Creative Commons 382 | public licenses is dedicated to the public domain under the CC0 Public 383 | Domain Dedication. Except for the limited purpose of indicating that 384 | material is shared under a Creative Commons public license or as 385 | otherwise permitted by the Creative Commons policies published at 386 | creativecommons.org/policies, Creative Commons does not authorize the 387 | use of the trademark "Creative Commons" or any other trademark or logo 388 | of Creative Commons without its prior written consent including, 389 | without limitation, in connection with any unauthorized modifications 390 | to any of its public licenses or any other arrangements, 391 | understandings, or agreements concerning use of licensed material. For 392 | the avoidance of doubt, this paragraph does not form part of the 393 | public licenses. 394 | 395 | Creative Commons may be contacted at creativecommons.org. 396 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Open Source Tags 2 | 3 | This repository tracks the tag info data for the tags that once appeared on [opensource.microsoft.com](https://opensource.microsoft.com). 4 | 5 | For historical reasons, this repository was archived in July 2021. In July 2020, a new version of the site shipped with a refreshed 6 | user interface, while removing complicated separate sources of data such as these tags. 7 | -------------------------------------------------------------------------------- /generate.js: -------------------------------------------------------------------------------- 1 | //automatically generates a markdown file for each row in a CSV 2 | //CSV headers must be name, displayName, description 3 | //an optional fourth column of content is allowed 4 | //for now, all of these fields must be plain strings 5 | 6 | const fs = require('fs'); 7 | const csv = require('csv-parser'); 8 | const filename = './result.csv'; //put your file here 9 | 10 | fs.createReadStream(filename) 11 | .pipe(csv()) 12 | .on('data', function (data) { 13 | const markdown = `---\nname: ${data.name}\ndisplayName: ${data.displayName}\ndescription: ${data.description}\n---\n${data.content || data.description}`; 14 | fs.writeFile(`tags/${data.name}.md`, markdown, (err) => { 15 | if(err){ 16 | console.log(`Could not save file ${data.name}.md: `, err); 17 | } 18 | }); 19 | }); 20 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "opensource-tags", 3 | "version": "0.0.1", 4 | "description": "Tag definitions for opensource.microsoft.com", 5 | "main": "generate.js", 6 | "scripts": { 7 | "start": "node generate.js", 8 | "test": "echo \"Error: no test specified\" && exit 1" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/Microsoft/opensource-tags.git" 13 | }, 14 | "author": "Microsoft", 15 | "license": "CC-BY-4.0", 16 | "bugs": { 17 | "url": "https://github.com/Microsoft/opensource-tags/issues" 18 | }, 19 | "homepage": "https://github.com/Microsoft/opensource-tags#readme", 20 | "devDependencies": { 21 | "csv-parser": "^1.11.0" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /result.csv: -------------------------------------------------------------------------------- 1 | name,displayName,description 2 | aspnet,ASP.NET,The .NET platform for making web based applications 3 | net,.NET,The .NET Framework is used for making modern applications 4 | websites,Websites,Repositories related to making websites 5 | commandlineexperiences,Command Line Experiences,Utilities for more easily interacting with Microsoft products via CLI 6 | microsoftazure,Microsoft Azure,Microsoft's cloud platform for enterprises large and small 7 | mobile,Mobile,"Code running on phones, tablets, and other devices" 8 | communityprojects,Community Projects,Projects serving the Microsoft community 9 | otherprojects,Other Projects, 10 | windows,Windows,Microsoft's operating system 11 | samples,Samples,Code samples for people using Microsoft technologies 12 | qtandotherprojects,QT and Other Projects,An application framework for developing cross platform apps in C++ 13 | javascript,JavaScript,World's most popular programming language. Used in the web browser and in Node.js 14 | typescript,TypeScript,Microsoft open source project providing strong type support to JavaScript 15 | graphics,Graphics,DirectX and other graphics samples 16 | applicationinsights,Application Insights,Logging and performance metric tool built for Azure 17 | tools,Tools,Code to help developers be more productive 18 | kinect,Kinect,Xbox add on for alowing voice and gesture interaction with user interfaces 19 | security,Security,Ensuring data safety 20 | sdks,SDKs,Tools for creating software applications 21 | powershell,PowerShell,Open source task automation framework for CLI 22 | frameworks,Frameworks,Structures for building software applications 23 | researchprojects,Research Projects,Experimental and exploratory code 24 | visualstudio,Visual Studio,Microsoft's flagship IDE for creating applications in .NET and other languages 25 | windowsserver,Windows Server,Microsoft's server operating system 26 | internetexplorer,Internet Explorer,First generation Microsoft web browser 27 | reactiveextensions,Reactive Extensions,"Libraries for asynchronous, event-based programming" 28 | winjs,WinJS,JavaScript library used for building windows platform applications 29 | demosandpresentations,Demos and Presentations,Code samples from Microsoft demos and presentations 30 | yammer,Yammer,Collaboration tool for businesses 31 | documentation,Documentation,Documentation describing Microsoft products and technologies 32 | office,Office,Suite of productivity tools for businesses 33 | onedrive,One Drive,Access files and photos from anywhere 34 | nokiaasha,Nokia Asha,Code for use with Nokia Asha feature phones 35 | nokiax,Nokia X,Code for apps running on the Nokia X Phone 36 | odata,OData,Protocol for creating queryable REST APIs 37 | containers,Containers,Method for virtualization of software environments at the operating system level 38 | microsoftedge,Microsoft Edge,"Next generation, high performance web browser" 39 | thali,Thali,Peer to Peer Sharing for Mobile 40 | media,Media,Tools for delivering media to users 41 | nuget,NuGet,Package manager for .NET 42 | internetofthings,Internet of Things,Connecting everyday objects to the internet 43 | sharepoint,Share Point,Collaboration tools for businesses 44 | healthvault,Health Vault,Tools for gathering and storing health data online 45 | microsoftdynamics,Microsoft Dynamics,Tools for managing your business and customers 46 | microsoftopentechnologies,Microsoft Open Technologies,Open source utilities from Microsoft 47 | microsoftresearch,Microsoft Research,Research based code 48 | windowsphone,Windows Phone,Microsoft's mobile offering 49 | uwp,UWP,The Universal Windows Platform is a common software platform for all devices running Windows 10 50 | microsoftdocs,MicrosoftDocs,The modern documentation service for Microsoft 51 | monaco,Monaco,The browser code editor that powers VS Code 52 | docker,Docker,"A computer program that performs operating-system-level virtualization, also known as ""containerization""." 53 | machinelearning,"Machine Learning","Tools that help computers learn from data" 54 | html,HTML,"Standard markup language for creating web pages" 55 | project-everest,Project Everest,"Project Everest aims to build and deploy a verified HTTPS stack. From Microsoft Research." 56 | docs,Docs,Documentation for Microsoft projects. 57 | assembly,Assembly,"A low-level programming language" 58 | -------------------------------------------------------------------------------- /tags/ailab.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: ailab 3 | displayName: Microsoft AI 4 | description: Experience, Learn and Code the latest breakthrough innovations with Microsoft AI 5 | --- 6 | Experience, Learn and Code the latest breakthrough innovations with Microsoft AI -------------------------------------------------------------------------------- /tags/api.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: api 3 | displayName: API 4 | description: Application Programming Interface 5 | --- 6 | 7 | An Application Programming Interface describes a set of endpoints and functions that other programs can interact with. -------------------------------------------------------------------------------- /tags/applicationinsights.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: applicationinsights 3 | displayName: Application Insights 4 | description: Logging and performance metric tool built for Azure 5 | --- 6 | Logging and performance metric tool built for Azure -------------------------------------------------------------------------------- /tags/archive.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: archive 3 | displayName: Archive 4 | description: Archived repository, useful for seeing how things were done but not in active development. 5 | --- 6 | 7 | Archived repository, useful for seeing how things were done but not in active development. -------------------------------------------------------------------------------- /tags/aspnet.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: aspnet 3 | displayName: ASP.NET 4 | description: The .NET platform for making web based applications 5 | --- 6 | The .NET platform for making web based applications -------------------------------------------------------------------------------- /tags/assembly.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: assembly 3 | displayName: Assembly 4 | description: A low-level programming language 5 | --- 6 | 7 | An assembly (or assembler) language, is any low-level programming language. 8 | -------------------------------------------------------------------------------- /tags/azuredatastudio.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: azuredatastudio 3 | displayName: Azure Data Studio 4 | description: Azure Data Studio is a data management tool that enables working with SQL Server, Azure SQL DB and SQL DW from Windows, macOS and Linux. 5 | --- 6 | Azure Data Studio is a data management tool that enables working with SQL Server, Azure SQL DB and SQL DW from Windows, macOS and Linux. -------------------------------------------------------------------------------- /tags/batchfile.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: batchfile 3 | displayName: Batch File 4 | description: Script file for running command line programs 5 | --- 6 | -------------------------------------------------------------------------------- /tags/beginnerfriendly.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: beginnerfriendly 3 | displayName: Beginner Friendly 4 | description: Good repositories for beginners to open source 5 | --- 6 | -------------------------------------------------------------------------------- /tags/commandlineexperiences.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: commandlineexperiences 3 | displayName: Command Line Experiences 4 | description: Utilities for more easily interacting with Microsoft products via CLI 5 | --- 6 | Utilities for more easily interacting with Microsoft products via CLI -------------------------------------------------------------------------------- /tags/communityprojects.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: communityprojects 3 | displayName: Community Projects 4 | description: Projects serving the Microsoft community 5 | --- 6 | Projects serving the Microsoft community -------------------------------------------------------------------------------- /tags/containers.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: containers 3 | displayName: Containers 4 | description: Method for virtualization of software environments at the operating system level 5 | --- 6 | Method for virtualization of software environments at the operating system level -------------------------------------------------------------------------------- /tags/cpp.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: cpp 3 | displayName: C++ 4 | description: An object oriented programming language 5 | --- 6 | Low-level object oriented programming language. 7 | -------------------------------------------------------------------------------- /tags/csharp.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: csharp 3 | displayName: C# 4 | description: An object oriented programming language 5 | --- 6 | C# (pronounced as *see sharp*) is a general-purpose, object-oriented programming language. 7 | -------------------------------------------------------------------------------- /tags/demosandpresentations.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: demosandpresentations 3 | displayName: Demos and Presentations 4 | description: Code samples from Microsoft demos and presentations 5 | --- 6 | Code samples from Microsoft demos and presentations -------------------------------------------------------------------------------- /tags/directx.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: directx 3 | displayName: DirectX 4 | description: Collection of multimedia APIs 5 | --- 6 | 7 | DirectX is a collection of APIs for multimedia, game programming and video, developed by Microsoft. -------------------------------------------------------------------------------- /tags/docker.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: docker 3 | displayName: Docker 4 | description: A computer program that performs operating-system-level virtualization, also known as "containerization". 5 | --- 6 | A computer program that performs operating-system-level virtualization, also known as "containerization". Docker is used to run software packages called "containers". All containers are run by a single operating system kernel and are thus more lightweight than virtual machines. -------------------------------------------------------------------------------- /tags/docs.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: docs 3 | displayName: Documentation 4 | description: Documentation describing Microsoft products and technologies. 5 | --- 6 | Documentation describing Microsoft products and technologies 7 | -------------------------------------------------------------------------------- /tags/documentation.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: documentation 3 | displayName: Documentation 4 | description: Documentation describing Microsoft products and technologies 5 | --- 6 | Documentation describing Microsoft products and technologies -------------------------------------------------------------------------------- /tags/erlang.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: erlang 3 | displayName: Erlang 4 | description: Popular programming language 5 | --- 6 | 7 | Erlang is a general-purpose programming language and runtime environment. Erlang has built-in support for concurrency, distribution and fault tolerance. Erlang is used in several large telecommunication systems from Ericsson. Erlang is available as open source from http://www.erlang.org 8 | -------------------------------------------------------------------------------- /tags/firsttime.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: firsttime 3 | displayName: First Time 4 | description: Suitable for first time contributors. 5 | --- 6 | 7 | Projects that are suitable for first time open source contributors. 8 | -------------------------------------------------------------------------------- /tags/frameworks.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: frameworks 3 | displayName: Frameworks 4 | description: Structures for building software applications 5 | --- 6 | Structures for building software applications -------------------------------------------------------------------------------- /tags/go.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: go 3 | displayName: Go 4 | description: An open source programming language that makes it easy to build simple, reliable, and efficient software. 5 | --- 6 | An open source programming language that makes it easy to build simple, reliable, and efficient software. -------------------------------------------------------------------------------- /tags/graphics.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: graphics 3 | displayName: Graphics 4 | description: DirectX and other graphics samples 5 | --- 6 | DirectX and other graphics samples -------------------------------------------------------------------------------- /tags/groovy.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: groovy 3 | displayName: Groovy 4 | description: A powerful, optionally typed and dynamic language, with static-typing and static compilation capabilities, for the Java platform aimed at improving developer productivity thanks to a concise, familiar and easy to learn syntax. 5 | --- 6 | 7 | A powerful, optionally typed and dynamic language, with static-typing and static compilation capabilities, for the Java platform aimed at improving developer productivity thanks to a concise, familiar and easy to learn syntax. It integrates smoothly with any Java program, and immediately delivers to your application powerful features, including scripting capabilities, Domain-Specific Language authoring, runtime and compile-time meta-programming and functional programming. -------------------------------------------------------------------------------- /tags/haskell.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: haskell 3 | displayName: Haskell 4 | description: Popular functional programming language 5 | --- 6 | Haskell is a standardized, general-purpose, purely functional programming language with non-strict semantics and strong static typing. 7 | -------------------------------------------------------------------------------- /tags/healthvault.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: healthvault 3 | displayName: Health Vault 4 | description: Tools for gathering and storing health data online 5 | --- 6 | Tools for gathering and storing health data online -------------------------------------------------------------------------------- /tags/html.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: html 3 | displayName: HTML 4 | description: Standard markup language for creating web pages 5 | --- 6 | Standard markup language for creating web pages -------------------------------------------------------------------------------- /tags/internetexplorer.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: internetexplorer 3 | displayName: Internet Explorer 4 | description: First generation Microsoft web browser 5 | --- 6 | First generation Microsoft web browser -------------------------------------------------------------------------------- /tags/internetofthings.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: internetofthings 3 | displayName: Internet of Things 4 | description: Connecting everyday objects to the internet 5 | --- 6 | Connecting everyday objects to the internet -------------------------------------------------------------------------------- /tags/ios.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: ios 3 | displayName: iOS 4 | description: Mobile operating system 5 | --- 6 | iOS is a mobile operating system developed by Apple. -------------------------------------------------------------------------------- /tags/java.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: java 3 | displayName: Java 4 | description: A general-purpose computer-programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible. 5 | --- 6 | 7 | A general-purpose computer-programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible. -------------------------------------------------------------------------------- /tags/javascript.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: javascript 3 | displayName: JavaScript 4 | description: World's most popular programming language. Used in the web browser, in Node.js and also in Electron.js to build cross-platform desktop applications 5 | --- 6 | World's most popular programming language. Used in the web browser and in Node.js 7 | -------------------------------------------------------------------------------- /tags/kinect.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: kinect 3 | displayName: Kinect 4 | description: Xbox add on for alowing voice and gesture interaction with user interfaces 5 | --- 6 | Xbox add on for alowing voice and gesture interaction with user interfaces -------------------------------------------------------------------------------- /tags/kubernetes.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: kubernetes 3 | displayName: Kubernetes 4 | description: An open-source system for automating deployment, scaling, and management of containerized applications. 5 | --- 6 | 7 | An open-source system for automating deployment, scaling, and management of containerized applications. -------------------------------------------------------------------------------- /tags/lisp.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: lisp 3 | displayName: Lisp 4 | description: Popular programming language 5 | --- 6 | 7 | Lisp is a family of computer programming languages with a long history and a distinctive, fully parenthesized prefix notation. 8 | -------------------------------------------------------------------------------- /tags/llvm.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: llvm 3 | displayName: LLVM 4 | description: "Compiler infrastructure project" 5 | --- 6 | The LLVM compiler infrastructure project is a "collection of modular and reusable compiler and toolchain technologies" used to develop compiler front ends and back ends. -------------------------------------------------------------------------------- /tags/logstash.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: logstash 3 | displayName: Logstash 4 | description: An open source, server-side data processing pipeline that ingests data from a multitude of sources simultaneously, transforms it, and then sends it to your favorite “stash”. 5 | --- 6 | 7 | An open source, server-side data processing pipeline that ingests data from a multitude of sources simultaneously, transforms it, and then sends it to your favorite “stash”. -------------------------------------------------------------------------------- /tags/machinelearning.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: machinelearning 3 | displayName: Machine Learning 4 | description: Tools that help computers learn from data 5 | --- 6 | Tools that help computers learn from data 7 | -------------------------------------------------------------------------------- /tags/macos.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: macos 3 | displayName: MacOS 4 | description: Apple's operating system 5 | --- 6 | 7 | Apple's operating system -------------------------------------------------------------------------------- /tags/media.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: media 3 | displayName: Media 4 | description: Tools for delivering media to users 5 | --- 6 | Tools for delivering media to users -------------------------------------------------------------------------------- /tags/microsoftazure.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: microsoftazure 3 | displayName: Microsoft Azure 4 | description: Microsoft's cloud platform for enterprises large and small 5 | --- 6 | Microsoft's cloud platform for enterprises large and small -------------------------------------------------------------------------------- /tags/microsoftdocs.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: microsoftdocs 3 | displayName: MicrosoftDocs 4 | description: The modern documentation service for Microsoft 5 | --- 6 | The modern documentation service for Microsoft -------------------------------------------------------------------------------- /tags/microsoftdos.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: microsoftdos 3 | displayName: MS-DOS 4 | description: Text-based operating system for x86 computers. 5 | --- 6 | Text-based operating system for x86 computers. 7 | 8 | -------------------------------------------------------------------------------- /tags/microsoftdynamics.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: microsoftdynamics 3 | displayName: Microsoft Dynamics 4 | description: Tools for managing your business and customers 5 | --- 6 | Tools for managing your business and customers -------------------------------------------------------------------------------- /tags/microsoftedge.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: microsoftedge 3 | displayName: Microsoft Edge 4 | description: Next generation, high performance web browser 5 | --- 6 | Next generation, high performance web browser -------------------------------------------------------------------------------- /tags/microsoftgraph.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: microsoftgraph 3 | displayName: Microsoft Graph 4 | description: Unified endpoint for accessing data, relationships and insights coming from the Microsoft cloud 5 | --- 6 | https://graph.microsoft.com 7 | 8 | Microsoft Graph (previously called Office 365 unified API) exposes multiple APIs from Microsoft cloud services through a single REST API endpoint (https://graph.microsoft.com). Using the Microsoft Graph, you can turn formerly difficult or complex queries into simple navigations. 9 | 10 | The Microsoft Graph gives you: 11 | 12 | * A unified API endpoint for accessing aggregated data from multiple Microsoft cloud services in a single response. 13 | * Seamless navigation between entities and the relationships among them. 14 | * Access to intelligence and insights coming from the Microsoft cloud. 15 | * And all this using a single authentication token. 16 | 17 | You can use the API to access fixed entities like users, groups, mail, messages, calendars, tasks, and notes coming from services like Outlook, OneDrive, Azure Active Directory, Planner, OneNote and others. You can also obtain calculated relationships powered by the Office Graph (only for commercial users) like the list of users you are working with or the documents trending around you. -------------------------------------------------------------------------------- /tags/microsoftopentechnologies.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: microsoftopentechnologies 3 | displayName: Microsoft Open Technologies 4 | description: Open source utilities from Microsoft 5 | --- 6 | Open source utilities from Microsoft -------------------------------------------------------------------------------- /tags/microsoftresearch.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: microsoftresearch 3 | displayName: Microsoft Research 4 | description: Research based code 5 | --- 6 | Research based code -------------------------------------------------------------------------------- /tags/mobile.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: mobile 3 | displayName: Mobile 4 | description: Code running on phones, tablets, and other devices 5 | --- 6 | Code running on phones, tablets, and other devices -------------------------------------------------------------------------------- /tags/monaco.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: monaco 3 | displayName: Monaco 4 | description: The browser code editor that powers VS Code 5 | --- 6 | The browser code editor that powers VS Code -------------------------------------------------------------------------------- /tags/msdn.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: msdn 3 | displayName: Microsoft Developer Network 4 | description: Microsoft Developer Network 5 | --- 6 | The Microsoft Developer Network is a collection of resources for the developer community that provides information, documentation and discussion authored by Microsoft and by the community at large. 7 | -------------------------------------------------------------------------------- /tags/msdos.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: msdos 3 | displayName: MS-DOS 4 | description: Text-based operating system for x86 computers. 5 | --- 6 | Text-based operating system for x86 computers. 7 | 8 | -------------------------------------------------------------------------------- /tags/napajs.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: napajs 3 | displayName: Napa.js 4 | description: A multi-threaded JavaScript runtime, written in C++, TypeScript, and JS 5 | --- 6 | A multi-threaded JavaScript runtime, written in C++, TypeScript, and JS 7 | -------------------------------------------------------------------------------- /tags/net.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: net 3 | displayName: .NET 4 | description: The .NET Framework is used for making modern applications 5 | --- 6 | The .NET Framework is used for making modern applications -------------------------------------------------------------------------------- /tags/nodejs.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: nodejs 3 | displayName: Node.js 4 | description: Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. 5 | --- 6 | Node.js is an open-source, cross-platform JavaScript run-time environment that executes JavaScript code outside of a browser. 7 | -------------------------------------------------------------------------------- /tags/nokiaasha.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: nokiaasha 3 | displayName: Nokia Asha 4 | description: Code for use with Nokia Asha feature phones 5 | --- 6 | Code for use with Nokia Asha feature phones -------------------------------------------------------------------------------- /tags/nokiax.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: nokiax 3 | displayName: Nokia X 4 | description: Code for apps running on the Nokia X Phone 5 | --- 6 | Code for apps running on the Nokia X Phone -------------------------------------------------------------------------------- /tags/nuget.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: nuget 3 | displayName: NuGet 4 | description: Package manager for .NET 5 | --- 6 | Package manager for .NET -------------------------------------------------------------------------------- /tags/odata.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: odata 3 | displayName: OData 4 | description: Protocol for creating queryable REST APIs 5 | --- 6 | Protocol for creating queryable REST APIs -------------------------------------------------------------------------------- /tags/office.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: office 3 | displayName: Office 4 | description: Suite of productivity tools for businesses 5 | --- 6 | Suite of productivity tools for businesses -------------------------------------------------------------------------------- /tags/onedrive.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: onedrive 3 | displayName: One Drive 4 | description: Access files and photos from anywhere 5 | --- 6 | Access files and photos from anywhere -------------------------------------------------------------------------------- /tags/otherprojects.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: otherprojects 3 | displayName: Other Projects 4 | description: 5 | --- 6 | -------------------------------------------------------------------------------- /tags/php.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: php 3 | displayName: PHP 4 | description: "PHP: Hypertext Preprocessor" 5 | --- 6 | PHP is a server-side scripting language designed for Web development, but also used as a general-purpose programming language. 7 | -------------------------------------------------------------------------------- /tags/powershell.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: powershell 3 | displayName: PowerShell 4 | description: Open source task automation framework for CLI 5 | --- 6 | Open source task automation framework for CLI -------------------------------------------------------------------------------- /tags/project-everest.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: project-everest 3 | displayName: Project Everest 4 | description: Project Everest aims to build and deploy a verified HTTPS stack. From Microsoft Research. 5 | --- 6 | Project Everest aims to build and deploy a verified HTTPS stack. From Microsoft Research. -------------------------------------------------------------------------------- /tags/pwa.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: pwa 3 | displayName: PWA 4 | description: Progressive Web App 5 | --- 6 | Progressive Web Apps (PWAs) are web applications that load like regular web pages or websites but make it faster and can offer the user functionality such as working offline, push notifications, and Add to Homescreen as native mobile applications. -------------------------------------------------------------------------------- /tags/python.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: python 3 | displayName: Python 4 | description: Popular programming language 5 | --- 6 | 7 | Python is a popular programming language that is reliable, flexible, easy to learn, free to use on all operating systems, and supported by both a strong developer community and many free libraries. 8 | 9 | Python is also easy and fast to write code in, and is thus very popular in various programming competitions. 10 | -------------------------------------------------------------------------------- /tags/qsharp.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: qsharp 3 | displayName: q# 4 | description: A quantum computing programming language 5 | --- 6 | q# (pronounced as *que sharp*) is a general-purpose, quantum computing programming language. 7 | -------------------------------------------------------------------------------- /tags/qtandotherprojects.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: qtandotherprojects 3 | displayName: QT and Other Projects 4 | description: An application framework for developing cross platform apps in C++ 5 | --- 6 | An application framework for developing cross platform apps in C++ -------------------------------------------------------------------------------- /tags/reactiveextensions.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: reactiveextensions 3 | displayName: Reactive Extensions 4 | description: Libraries for asynchronous, event-based programming 5 | --- 6 | Libraries for asynchronous, event-based programming -------------------------------------------------------------------------------- /tags/researchprojects.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: researchprojects 3 | displayName: Research Projects 4 | description: Experimental and exploratory code 5 | --- 6 | Experimental and exploratory code -------------------------------------------------------------------------------- /tags/ruby.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: ruby 3 | displayName: Ruby 4 | description: A dynamic, open source programming language with a focus on simplicity and productivity. 5 | --- 6 | 7 | A dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write. -------------------------------------------------------------------------------- /tags/rust.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: rust 3 | displayName: Rust 4 | description: A systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety. 5 | --- 6 | 7 | A systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety. -------------------------------------------------------------------------------- /tags/samples.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: samples 3 | displayName: Samples 4 | description: Code samples for people using Microsoft technologies 5 | --- 6 | Code samples for people using Microsoft technologies -------------------------------------------------------------------------------- /tags/scala.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: scala 3 | displayName: Scala 4 | description: Popular programming language 5 | --- 6 | 7 | Scala is a general-purpose programming language providing support for functional programming and a strong static type system. 8 | -------------------------------------------------------------------------------- /tags/sdks.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: sdks 3 | displayName: SDKs 4 | description: Tools for creating software applications 5 | --- 6 | Tools for creating software applications -------------------------------------------------------------------------------- /tags/security.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: security 3 | displayName: Security 4 | description: Ensuring data safety 5 | --- 6 | Ensuring data safety -------------------------------------------------------------------------------- /tags/sharepoint.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: sharepoint 3 | displayName: Share Point 4 | description: Collaboration tools for businesses 5 | --- 6 | Collaboration tools for businesses -------------------------------------------------------------------------------- /tags/shell.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: shell 3 | displayName: Shell 4 | description: A user interface for access to an operating system's services. 5 | --- 6 | 7 | A user interface for access to an operating system's services. -------------------------------------------------------------------------------- /tags/spark.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: spark 3 | displayName: Spark 4 | description: A unified analytics engine for large-scale data processing. 5 | --- 6 | 7 | A unified analytics engine for large-scale data processing. -------------------------------------------------------------------------------- /tags/thali.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: thali 3 | displayName: Thali 4 | description: Peer to Peer Sharing for Mobile 5 | --- 6 | Peer to Peer Sharing for Mobile -------------------------------------------------------------------------------- /tags/tipsandrecipes.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: tips 3 | displayName: Tips and Recipes 4 | description: Tag for finding tips and recipes. 5 | --- 6 | Tag for finding tips or guides for various Microsoft tools such as vscode. 7 | -------------------------------------------------------------------------------- /tags/tools.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: tools 3 | displayName: Tools 4 | description: Code to help developers be more productive 5 | --- 6 | Code to help developers be more productive -------------------------------------------------------------------------------- /tags/typescript.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: typescript 3 | displayName: TypeScript 4 | description: Microsoft open source project providing strong type support to JavaScript 5 | --- 6 | Microsoft open source project providing strong type support to JavaScript -------------------------------------------------------------------------------- /tags/uwp.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: uwp 3 | displayName: UWP 4 | description: The Universal Windows Platform is a common software platform for all devices running Windows 10 5 | --- 6 | The Universal Windows Platform is a common software platform for all devices running Windows 10 -------------------------------------------------------------------------------- /tags/visualstudio.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: visualstudio 3 | displayName: Visual Studio 4 | description: Microsoft's flagship IDE for creating applications in .NET and other languages 5 | --- 6 | Microsoft's flagship IDE for creating applications in .NET and other languages -------------------------------------------------------------------------------- /tags/vscode.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: vscode 3 | displayName: Visual Studio Code (VS Code) 4 | description: VS Code is a new type of tool that combines the simplicity of a code editor with what developers need for their core edit-build-debug cycle. 5 | --- 6 | Visual Studio Code (VS Code) is a free, open-source, source code editor developed by Microsoft for Windows, Linux and macOS. It includes support for debugging, embedded Git control, syntax highlighting, intelligent code completion, snippets, and code refactoring. It is also customizable, so users can change the editor's theme, keyboard shortcuts, and preferences. -------------------------------------------------------------------------------- /tags/websites.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: websites 3 | displayName: Websites 4 | description: Repositories related to making websites 5 | --- 6 | Repositories related to making websites -------------------------------------------------------------------------------- /tags/windows.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: windows 3 | displayName: Windows 4 | description: Microsoft's operating system 5 | --- 6 | Microsoft's operating system -------------------------------------------------------------------------------- /tags/windowsphone.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: windowsphone 3 | displayName: Windows Phone 4 | description: Microsoft's mobile offering 5 | --- 6 | Microsoft's mobile offering -------------------------------------------------------------------------------- /tags/windowsserver.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: windowsserver 3 | displayName: Windows Server 4 | description: Microsoft's server operating system 5 | --- 6 | Microsoft's server operating system -------------------------------------------------------------------------------- /tags/winfile.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: winfile 3 | displayName: Windows File Manager 4 | description: Original Windows File Manager (winfile) with enhancements 5 | --- 6 | Original Windows File Manager (winfile) with enhancements -------------------------------------------------------------------------------- /tags/winjs.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: winjs 3 | displayName: WinJS 4 | description: JavaScript library used for building windows platform applications 5 | --- 6 | JavaScript library used for building windows platform applications -------------------------------------------------------------------------------- /tags/xamarin.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: xamarin 3 | displayName: Xamarin 4 | description: Lets you build native apps for Android, iOS, and macOS using .NET code and platform-specific user interfaces. 5 | --- 6 | 7 | Lets you build native apps for Android, iOS, and macOS using .NET code and platform-specific user interfaces. -------------------------------------------------------------------------------- /tags/yammer.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: yammer 3 | displayName: Yammer 4 | description: Collaboration tool for businesses 5 | --- 6 | Collaboration tool for businesses --------------------------------------------------------------------------------