Addsearch http://addsearch.com $25+ per month
AWS CloudSearch (AWS | Amazon CloudSearch - Search Service in the Cloud)
Azure Search (Azure Search - Cloud Search Service | Microsoft Azure)
Cludo (https://www.cludo.com) (199$ per month)
Elasticsearch: RESTful, Distributed Search & Analytics (open source)
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
| unzip postgresql-11.1-1-windows-x64-binaries.zip to \ which leaves pgsql in root | |
| cd \pgsql\bin | |
| mkdir \pgsql\data | |
| mkdir \pgsql\log | |
| initdb -k -U postgres -A password -E utf8 -W -D \pgsql\data | |
| # as administrator | |
| \pgsql\bin\pg_ctl.exe register -N "postgresql" -U "NT AUTHORITY\NetworkService" -D "\pgsql\data" -l "\pgsql\log\pgsql.log" -w | |
| # maybe helpful to fix perms |
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
| var devices = CaptureDeviceList.Instance; | |
| devices.Select (z=>z.Description).Dump(); | |
| WinPcapDevice d = (WinPcapDevice )devices.First(z=>z.Description.Contains("Ethernet")); | |
| d.Open(SharpPcap.WinPcap.OpenFlags.NoCaptureLocal,0); | |
| d.Filter="port 80"; | |
| WinPcapDevice.GetSequence(d).Take(10).Dump(); |
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
| module Jekyll | |
| module Convertible | |
| def write(dest) | |
| path = destination(dest) | |
| FileUtils.mkdir_p(File.dirname(path)) | |
| if File.extname(path).downcase == '.html' then | |
| self.output.strip! | |
| reg = /<\/?pre[^>]*>/i | |
| pres = self.output.scan(reg) | |
| tary = self.output.split(reg) |
NewerOlder