This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
InVision | ||||||
---|---|---|---|---|---|---|
Staff Product Designer | 2/24/2020 | Anywhere | #design, #anywhere, #Full Time | https://www.invisionapp.com/ | https://workew.com/job/staff-product-designer-invision/ | |
Product Management Director | 2/24/2020 | Anywhere | #tech, #project-management, #anywhere, #Freelance | https://www.invisionapp.com/ | https://workew.com/job/product-management-director-invision/ | |
UX Researcher | 2/4/2020 | Anywhere | #design, #anywhere, #Full Time | https://www.invisionapp.com/ | https://workew.com/job/ux-researcher-invision/ | |
Staff Product Designer, Core | 2/29/2020 | #design, #Design, #visual design, #ux, #agile, #interactive design, #Product Design, #UI/UX, #sketch | https://remotive.io/remote-jobs/design/staff-product-designer-core-84679 | |||
Lead Product Manager, Studio | 2/18/2020 | #tech, #Product, #product management, #saas | https://remotive.io/remote-jobs/product/lead-product-manager-studio-81737 | |||
Principal Product Manager | 2/17/2020 | #tech, #Product, #product management, #cloud, #SRE | https://remotive.io/remote-jobs/product/princip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace firstGiraffe | |
module HttpHandlers = | |
open Microsoft.AspNetCore.Http | |
open Giraffe | |
open firstGiraffe.Models | |
let handleGetHello = | |
fun (next : HttpFunc) (ctx : HttpContext) -> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module firstGiraffe.App | |
open System | |
open Microsoft.AspNetCore.Builder | |
open Microsoft.AspNetCore.Cors.Infrastructure | |
open Microsoft.AspNetCore.Hosting | |
open Microsoft.Extensions.Logging | |
open Microsoft.Extensions.DependencyInjection | |
open Giraffe | |
open firstGiraffe.HttpHandlers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace firstGiraffe.Models | |
[<CLIMutable>] | |
type Message = | |
{ | |
Text : string | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@page "/test" | |
<h1>test page</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@page "/counter" | |
<h1>Counter</h1> | |
<p>Current count: @currentCount</p> | |
<button class="btn btn-primary" onclick="@IncrementCount">Click me</button> | |
@functions { | |
int currentCount = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Product.CommandService.Controllers | |
{ | |
[Route("api/[controller]")] | |
public class PingController : Controller | |
{ | |
// GET api/ping | |
[HttpGet] | |
public string Get() | |
{ | |
return "Ping"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using FluentAssertions; | |
using System.Threading.Tasks; | |
using Xunit; | |
namespace Product.CommandService.IntegrationTests | |
{ | |
public class PingControllerTests : IClassFixture<TestServerFixture> | |
{ | |
private readonly TestServerFixture _fixture; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.AspNetCore.Hosting; | |
using Microsoft.AspNetCore.TestHost; | |
using Microsoft.Extensions.PlatformAbstractions; | |
using System; | |
using System.IO; | |
using System.Net.Http; | |
namespace Product.CommandService.IntegrationTests | |
{ | |
public class TestServerFixture : IDisposable |
NewerOlder