i'm too tired to write a blog post rn, will write tommorrow
This commit is contained in:
parent
ac90b17029
commit
6130dca281
@ -4,7 +4,6 @@ title: "Working hard or hardly working?"
|
|||||||
published: true
|
published: true
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
Note that if you haven't read a previous blog post where I introduce the team and introduce the project, please go check that out!
|
Note that if you haven't read a previous blog post where I introduce the team and introduce the project, please go check that out!
|
||||||
|
|
||||||
Continuing our endeavor in making the best temperature solution possible, we here at PiBake are hard at work. Everyone is doing something, whether it’s writing code for the website or fixing hardware, it sure is something that we have brewing up here.
|
Continuing our endeavor in making the best temperature solution possible, we here at PiBake are hard at work. Everyone is doing something, whether it’s writing code for the website or fixing hardware, it sure is something that we have brewing up here.
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
layout: post
|
||||||
|
title: "Racing to the finish line!"
|
||||||
|
published: true
|
||||||
|
---
|
||||||
|
|
||||||
|
This sprint, it was "heads down and squashing bugs" kind of sprint. We, as a team, have a lot accomplished but we not quite done yet, with our importing to our database still needing to happen and some fishing touches have to be added as well. Let's get into it, shall we?
|
11
src/code/pointer.go
Normal file
11
src/code/pointer.go
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
x := 15
|
||||||
|
a := &x
|
||||||
|
|
||||||
|
fmt.Println(a) // print mem addr
|
||||||
|
fmt.Println(*a) // print value of x
|
||||||
|
}
|
13
src/code/web.go
Normal file
13
src/code/web.go
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import ("fmt"
|
||||||
|
"net/http")
|
||||||
|
|
||||||
|
func index_handler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
fmt.Fprintf(w, "Whoa, Go is awesome!")
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
http.HandleFunc("/", index_handler)
|
||||||
|
http.ListenAndServe(":8000", nil)
|
||||||
|
}
|
@ -17,6 +17,7 @@
|
|||||||
<a href="https://www.linkedin.com/in/wyatt-miller-b4208a2b"><i class="fab fa-linkedin"></i></a>
|
<a href="https://www.linkedin.com/in/wyatt-miller-b4208a2b"><i class="fab fa-linkedin"></i></a>
|
||||||
</p>
|
</p>
|
||||||
<p>© <?php echo date("Y"); ?> Miller Web Solutions, Wyatt J. Miller - Licensed by the <a href="https://opensource.org/licenses/MIT">MIT</a></p>
|
<p>© <?php echo date("Y"); ?> Miller Web Solutions, Wyatt J. Miller - Licensed by the <a href="https://opensource.org/licenses/MIT">MIT</a></p>
|
||||||
|
<p>Hosted by <a href="https://m.do.co/c/1c8f6f501242">DigitalOcean</a></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
Loading…
Reference in New Issue
Block a user