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
| TinyCore | |
| Apr 13, 2015: | |
| remastering tiny core using virtualbox: | |
| 1. create a new virtualbox vm and add TinyCore-current.iso to the Storage setting | |
| 2. start the new vm | |
| 3. in a terminal window do: tce-load -wi ezremaster | |
| 4. perform all of these tce-load's: ... but do NOT configure anything, nor add pip (as it won't persist) | |
| 1. tce-load -wi libxslt.tcz ... lxml dependency | |
| 2. tce-load -wi libxml2-dev.tcz ... lxml dependency | |
| 3. tc-install.tcz ... so users of this remaster can install it if they want to, instead of only using the .iso |
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
| package main | |
| import ( | |
| "fmt" | |
| "net/http" | |
| "sync" | |
| "time" | |
| ) | |
| func main() { |
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
| #!/usr/bin/env ruby | |
| require 'socket' | |
| require 'timeout' | |
| # see: https://github.com/ekanite/ekanite | |
| if ARGV.empty? | |
| do_it = 1 | |
| else | |
| do_it = ARGV[0].to_i |
OlderNewer