The Lean Canvas is a version of the Business Model Canvas adapted by Ash Maurya specifically for startups. You can read more about it here.
Problem
Top 3 Problems |
FROM ubuntu:latest | |
COPY signals.sh signals.sh | |
ENV STOPSIGNAL=SIGTERM | |
STOPSIGNAL ${STOPSIGNAL} | |
ENTRYPOINT ["/bin/bash"] | |
CMD ["./signals.sh"] |
with (import <nixpkgs> {}); | |
stdenv.mkDerivation { | |
name = "qemu-riscv"; | |
src = ./.; | |
buildInputs = [ | |
alsaLib glib libaio libpulseaudio perl pixman pkgconfig python2 SDL zlib | |
]; |
interface Foo ty where | |
doStuff : (Eq eq) => ty -> eq | |
data Bar : Type where | |
MkBar : (Eq eq) => eq -> Bar | |
Foo Bar where | |
doStuff (MkBar x) = x |
package main | |
import ( | |
"log" | |
"time" | |
mgo "gopkg.in/mgo.v2" | |
) | |
func init() { |
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func main() { | |
var intTrash int | |
var byteTrash byte |
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func fib_iter(n int) int { | |
current := 0 | |
prev := 1 |
The Lean Canvas is a version of the Business Model Canvas adapted by Ash Maurya specifically for startups. You can read more about it here.
Problem
Top 3 Problems |
#!/bin/sh | |
# The MIT License (MIT) | |
# | |
# Copyright (c) 2015 Pierre Beaucamp <[email protected]> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
# The MIT License (MIT) | |
# | |
# Copyright (c) 2015 Pierre Beaucamp <[email protected]> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: |