I wrote this four years ago, so instead use this command:
$ docker rmi $(docker images -q -f dangling=true)
<form action="#" method="POST" class="search-form"> | |
<input class="search-input" type="text" placeholder="Поиск:" /> | |
<label class="search-label"> | |
</label> | |
</form> |
<form action="#" method="POST" class="search-form"> | |
<input class="search-input" type="text" placeholder="Поиск:" /> | |
<label class="search-label"> | |
</label> | |
</form> |
Related to this pull-request: | |
https://github.com/alpinelinux/aports/pull/1092 | |
Steps: | |
1. upgrade busybox to the one, which has busybox-extras | |
2. telnet does not exist anymore | |
3. add busybox-extras | |
4. telnet exists | |
5. uninstall busybox-extras and re-install busybox | |
6. telnet does not exist anymore |
package main | |
import ( | |
"fmt" | |
"sync" | |
) | |
type Fetcher interface { | |
// Fetch returns the body of URL and | |
// a slice of URLs found on that page. |
package main | |
import ( | |
"fmt" | |
"golang.org/x/tour/tree" | |
"sort" | |
) | |
func Walk(t *tree.Tree, ch chan int) { | |
WalkSub(t, ch) |
#!/bin/bash | |
echo "removeing evaluation key" | |
rm ~/.IntelliJIdea15/config/eval/idea15.evaluation.key | |
echo "resetting evalsprt in options.xml" | |
sed -i '/evlsprt/d' ~/.IntelliJIdea15/config/options/options.xml | |
echo "resetting evalsprt in prefs.xml" | |
sed -i '/evlsprt/d' ~/.java/.userPrefs/prefs.xml |