├── src ├── TechStacks │ ├── TechStacks │ │ ├── partials │ │ │ ├── partial1.html │ │ │ ├── partial2.html │ │ │ ├── stacks │ │ │ │ ├── popular.html │ │ │ │ ├── latest.html │ │ │ │ ├── stack.html │ │ │ │ ├── create.html │ │ │ │ └── edit.html │ │ │ ├── tech │ │ │ │ ├── latest.html │ │ │ │ ├── create.html │ │ │ │ ├── tech.html │ │ │ │ └── edit.html │ │ │ ├── user │ │ │ │ └── feed.html │ │ │ ├── favorites │ │ │ │ └── favorites.html │ │ │ └── home.html │ │ ├── Global.asax │ │ ├── img │ │ │ ├── app │ │ │ │ ├── bg.png │ │ │ │ ├── brand.png │ │ │ │ ├── logo-76.png │ │ │ │ ├── tech-75.png │ │ │ │ ├── heart-75.png │ │ │ │ ├── stacks-75.png │ │ │ │ ├── tech-white-75.png │ │ │ │ ├── logo-220-inverted.png │ │ │ │ └── stacks-white-75.png │ │ │ ├── favicon.png │ │ │ ├── logo-280.png │ │ │ ├── java-logo.png │ │ │ ├── kotlin-logo.png │ │ │ ├── share │ │ │ │ ├── Email.png │ │ │ │ ├── Google.png │ │ │ │ ├── Pocket.png │ │ │ │ ├── Reddit.png │ │ │ │ ├── Tumblr.png │ │ │ │ ├── Twitter.png │ │ │ │ ├── Facebook.png │ │ │ │ ├── LinkedIn.png │ │ │ │ ├── Pinboard.png │ │ │ │ ├── Pinterest.png │ │ │ │ └── Wordpress.png │ │ │ ├── swift-logo.png │ │ │ ├── github_normal.png │ │ │ ├── no-profile64.png │ │ │ ├── appstore-badge.png │ │ │ ├── en_app_rgb_wo_60.png │ │ │ ├── facebook_normal.png │ │ │ ├── twitter_normal.png │ │ │ └── sign-in-with-twitter-gray.png │ │ ├── SQLite.Interop.dll │ │ ├── tests │ │ │ ├── unit │ │ │ │ ├── testModules.js │ │ │ │ └── techControllerSpec.js │ │ │ └── karma.conf.js │ │ ├── js │ │ │ ├── stacks │ │ │ │ ├── filters.js │ │ │ │ └── services.js │ │ │ ├── navigation │ │ │ │ └── controllers.js │ │ │ ├── home │ │ │ │ └── controllers.js │ │ │ ├── user │ │ │ │ └── controllers.js │ │ │ ├── components │ │ │ │ └── chosen │ │ │ │ │ └── directives.js │ │ │ ├── favorites │ │ │ │ └── controllers.js │ │ │ └── tech │ │ │ │ └── services.js │ │ ├── Scripts │ │ │ └── _references.js │ │ ├── bower.json │ │ ├── Global.asax.cs │ │ ├── Views │ │ │ ├── Tech │ │ │ │ ├── AllTech.cshtml │ │ │ │ └── Tech.cshtml │ │ │ ├── Stacks │ │ │ │ ├── AllStacks.cshtml │ │ │ │ └── Stack.cshtml │ │ │ ├── User │ │ │ │ └── User.cshtml │ │ │ ├── Shared │ │ │ │ └── ServerHtml.cshtml │ │ │ └── Home.cshtml │ │ ├── package.json │ │ ├── Properties │ │ │ ├── PublishProfiles │ │ │ │ └── CustomProfile.pubxml │ │ │ └── AssemblyInfo.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── default.html │ ├── package-lock.json │ ├── TechStacks.ServiceModel │ │ ├── SessionInfo.cs │ │ ├── LogoUrlApproval.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Types │ │ │ ├── PageStats.cs │ │ │ ├── UserFavorites.cs │ │ │ └── TechnologyStack.cs │ │ ├── Lock.cs │ │ ├── AccountTechStacks.cs │ │ ├── TechStacks.ServiceModel.csproj │ │ ├── UserFavorites.cs │ │ ├── Technologies.cs.orig │ │ └── Technologies.cs │ ├── TechStacks.ServiceInterface │ │ ├── AppFeatureFlags.cs │ │ ├── app.config │ │ ├── SessionInfoServices.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Validations │ │ │ ├── TechStackValidator.cs │ │ │ └── TechValidators.cs │ │ ├── TechStackQueries.cs │ │ ├── Filters │ │ │ ├── TechStackFilters.cs │ │ │ └── TechFilters.cs │ │ ├── Admin │ │ │ └── AdminServices.cs │ │ ├── TechStacks.ServiceInterface.csproj │ │ ├── CustomAuthUserSession.cs │ │ ├── UserStackServices.cs │ │ ├── TechExtensions.cs │ │ ├── TechnologyServices.cs │ │ ├── ClientRoutesService.cs │ │ ├── TwitterUpdates.cs │ │ ├── UserFavoriteServices.cs │ │ └── TechnologyServicesAdmin.cs │ └── TechStacks.Tests │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ ├── UnitTests.cs │ │ ├── TechStacks.Tests.csproj │ │ ├── TestHosts.cs │ │ ├── Seeds.cs │ │ └── AdminTasks.cs ├── NuGet.Config └── TechStacks.sln ├── license.txt └── .gitignore /src/TechStacks/TechStacks/partials/partial1.html: -------------------------------------------------------------------------------- 1 |
This is the partial for view 1.
-------------------------------------------------------------------------------- /src/TechStacks/TechStacks/partials/partial2.html: -------------------------------------------------------------------------------- 1 |This is the partial for view 2.
-------------------------------------------------------------------------------- /src/TechStacks/TechStacks/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="TechStacks.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/app/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/app/bg.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/favicon.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/logo-280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/logo-280.png -------------------------------------------------------------------------------- /src/TechStacks/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "TechStacks", 3 | "lockfileVersion": 2, 4 | "requires": true, 5 | "packages": {} 6 | } 7 | -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/SQLite.Interop.dll -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/app/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/app/brand.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/app/logo-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/app/logo-76.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/app/tech-75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/app/tech-75.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/java-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/java-logo.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/kotlin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/kotlin-logo.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/share/Email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/share/Email.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/swift-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/swift-logo.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/app/heart-75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/app/heart-75.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/app/stacks-75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/app/stacks-75.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/github_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/github_normal.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/no-profile64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/no-profile64.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/share/Google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/share/Google.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/share/Pocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/share/Pocket.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/share/Reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/share/Reddit.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/share/Tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/share/Tumblr.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/share/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/share/Twitter.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/appstore-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/appstore-badge.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/en_app_rgb_wo_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/en_app_rgb_wo_60.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/facebook_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/facebook_normal.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/share/Facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/share/Facebook.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/share/LinkedIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/share/LinkedIn.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/share/Pinboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/share/Pinboard.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/share/Pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/share/Pinterest.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/share/Wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/share/Wordpress.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/twitter_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/twitter_normal.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/app/tech-white-75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/app/tech-white-75.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/app/logo-220-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/app/logo-220-inverted.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/img/app/stacks-white-75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/TechStacks/HEAD/src/TechStacks/TechStacks/img/app/stacks-white-75.png -------------------------------------------------------------------------------- /src/TechStacks/TechStacks/partials/stacks/popular.html: -------------------------------------------------------------------------------- 1 || Name | 16 |Description | 17 |Vendor | 18 |
| @tech.Name | 24 |
25 | @tech.Description
26 | |
27 | @tech.VendorName | 28 |
| Name | 15 |Description | 16 |Created By | 17 |
| @techStack.Name | 23 |@techStack.Description |
24 | 25 | |
| Name | 25 |Description | 26 |Created By | 27 |
| {{techStack.Name}} | 31 |{{techStack.Description}} |
32 | 33 | |
19 | @tech.ProductUrl 20 | 21 | by 22 | @tech.VendorName 23 | 24 |
25 | 26 |@tech.Description
27 | 28 || Name | 36 |Description | 37 |
| 43 | 44 | @techStack.Name 45 | 46 | | 47 |
48 | @techStack.Description
49 | |
50 |
| Name | 25 |Description | 26 |Vendor | 27 |
|
31 |
32 | {{tech.Name}}
33 |
34 | |
35 |
36 | {{tech.Description}}
37 | |
38 |
39 |
40 | {{tech.VendorName}}
43 | |
44 |
@currentStack.Description
26 | 27 | @foreach (var tier in allTiers) 28 | { 29 | var techs = currentStack.TechnologyChoices.Where(x => x.Tier == tier.Value).ToList(); 30 | if (techs.Count > 0) 31 | { 32 |52 | last updated: @currentStack.LastModified.ToString("yyyy/MM/dd") 53 | by @currentStack.LastModifiedBy 54 |
55 |15 | {{stats.ViewCount}} views, {{stats.FavCount}} faves 16 |
17 | 18 |47 | last updated at {{currentStack.LastModified | date: "yyyy/MM/dd"}} 48 | by {{currentStack.LastModifiedBy}} 49 | created by {{currentStack.CreatedBy}} 50 |
51 |7 | {{stats.ViewCount}} views, {{stats.FavCount}} faves 8 |
9 |31 | {{tech.ProductUrl}} 32 | 33 | by 34 | {{tech.VendorName}} 35 | 36 |
37 | 38 |{{tech.Description}}
39 | 40 || Name | 48 |Description | 49 |
| 53 | 54 | {{techStack.Name}} 55 | 56 | | 57 |
58 | {{techStack.Description}}
59 | |
60 |
| Name | 25 |Description | 26 |
| @techStack.Name | 32 |@techStack.Description | 33 |
| Name | 47 |Description | 48 |
| @techStack.Name | 54 |@techStack.Description |
55 |
| Name | 69 |Description | 70 |
| @tech.Name | 76 |@tech.Description |
77 |
| Name | 22 |Description | 23 |confirm | 24 |
|
29 | 30 | You haven't 31 | {{currentUserName}} hasn't 32 | created any TechStacks yet. 33 | 34 | Create a stack 35 | |
36 | ||
| 40 | | 41 | | 42 | |
| Name | 52 |Description | 53 |
| {{techStack.Name}} | 57 |{{techStack.Description}} |
58 |
| Name | 68 |Description | 69 |
| {{tech.Name}} | 73 |{{tech.Description}} |
74 |
TechStacks with my favorite technologies...
6 |10 | Discover what technologies were used to create popular Websites and Apps, for example here's what TechStacks was created with :) 11 |
12 |13 | Missing your favorite Tech or TechStack? Sign-in and add it now! 14 | You'll also be able to customize this page and see who else uses your favorite tech! 15 |
16 | 36 |13 | Discover what technologies were used to create popular Websites and Apps, for example here's what TechStacks was created with :) 14 |
15 |16 | Missing your favorite Tech or TechStack? Sign-in and add it now! 17 | You'll also be able to customize this page and see who else uses your favorite tech! 18 |
19 | 39 |