Skip to content

Commit 394637e

Browse files
Move assets on s3 to hosted site (#128)
1 parent 32ea5d4 commit 394637e

6 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/assets/css/style.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ pre > code {
9494
padding:10px;
9595
background-color:#ffc;
9696
margin-bottom:25px;
97-
background-image:url(https://s3.amazonaws.com/lyah/note.jpg);
97+
background-image:url(../images/note.png);
9898
}
9999
.hintbox > p {
100100
margin-bottom:0px;
@@ -141,7 +141,7 @@ pre > code {
141141
margin:0px auto;
142142
}
143143
.introcontent {
144-
background-image:url(https://s3.amazonaws.com/lyah/bg.png);
144+
background-image:url(../images/bg.png);
145145
}
146146
.bgwrapper {
147147
margin-top:50px;
@@ -225,13 +225,13 @@ pre > code {
225225
}
226226
.prevlink {
227227
padding-left:20px;
228-
background-image:url(https://s3.amazonaws.com/lyah/prv.png);
228+
background-image:url(../images/prv.png);
229229
background-position:0px 3px;
230230
background-repeat:no-repeat;
231231
}
232232
.nxtlink {
233233
padding-right:20px;
234-
background-image:url(https://s3.amazonaws.com/lyah/nxt.png);
234+
background-image:url(../images/nxt.png);
235235
background-position:top right;
236236
background-repeat:no-repeat;
237237
}

docs/assets/images/bg.png

207 Bytes
Loading

docs/assets/images/note.jpg

17.8 KB
Loading

docs/assets/images/nxt.png

274 Bytes
Loading

docs/assets/images/prv.png

276 Bytes
Loading

markdown/source_md/functionally-solving-problems.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Every time a number is encountered, push it onto the stack.
2424
When we encounter an operator, take the two numbers that are on top of the stack (we also say that we *pop* them), use the operator and those two and then push the resulting number back onto the stack.
2525
When you reach the end of the expression, you should be left with a single number if the expression was well-formed and that number represents the result.
2626

27-
![this expression](http://s3.amazonaws.com/lyah/rpn.png){.center width=626 height=224}
27+
![this expression](assets/images/functionally-solving-problems/rpn.png){.center width=626 height=224}
2828

2929
Let's go over the expression `10 4 3 + 2 * -` together!
3030
First we push `10` onto the stack and the stack is now `10`.

0 commit comments

Comments
 (0)