THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
| You appear to be advocating a new: | |
| [ ] cloud-hosted [ ] locally installable [ ] web-based [ ] browser-based [ ] language-agnostic | |
| [ ] language-specific IDE. Your IDE will not succeed. Here is why it will not succeed. | |
| You appear to believe that: | |
| [ ] Syntax highlighting is what makes programming difficult | |
| [ ] Garbage collection is free | |
| [ ] Computers have infinite memory | |
| [ ] Nobody really needs: |
| NO_COLOR=\033[0m | |
| OK_COLOR=\033[32;01m | |
| ERROR_COLOR=\033[31;01m | |
| WARN_COLOR=\033[33;01m | |
| DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...) | |
| deps: | |
| @echo "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)" | |
| @go get -d -v ./... | |
| @echo $(DEPS) | xargs -n1 go get -d |
| [0-9a-zA-Z]{2} | |
| 30-39,41-5a,61-7a | |
| a:61 z:7a A:41 Z:5a 0:30 9:39 | |
| MSP430 alphanumeric shellcode is hard. There's no way to write to memory, | |
| no word-sized reg-reg operations, and all we have is add/sub/mov and a few conditional jumps. | |
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
| package main | |
| import ( | |
| "github.com/guelfey/go.dbus" | |
| "log" | |
| "bufio" | |
| "os" | |
| ) | |
| func main() { |
| package main | |
| import( | |
| "log" | |
| "net/url" | |
| "net/http" | |
| "net/http/httputil" | |
| ) | |
| func main() { |
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "github.com/gorilla/sessions" | |
| "io/ioutil" | |
| "log" | |
| "net/http" | |
| "net/url" |
G-WAN is a new free web server. They seem to be very proud of it, or at least just want to make a lot of money. Well anyway, in almost every sentence they write, they claim that they are 20% cooler than anything else. It feels a bit arrogant. I have to admit, I don't know a lot about web servers, so I can't speak to how good they are.
However, then I saw their Captcha example. I also don't know much about machine learning algorithms, OCR, and stuff like that, but I do know how to read pixels. I also know how to compare values with python :P
They say the following about their Captcha:
| #!/bin/sh | |
| # | |
| # Runs during git flow release start | |
| # | |
| # Positional arguments: | |
| # $1 Version | |
| # | |
| # Return VERSION - When VERSION is returned empty gitflow | |
| # will stop as the version is necessary | |
| # |