Severity: Notice
Message: Memcache::connect(): Server localhost (tcp 11211, udp 0) failed with: Connection refused (111)
Filename: libraries/Cache.php
Line Number: 83
Severity: Warning
Message: Memcache::connect(): Can't connect to localhost:11211, Connection refused (111)
Filename: libraries/Cache.php
Line Number: 83
commandlinefu.com is the place to record those command-line gems that you return to again and again.
Delete that bloated snippets file you've been using and share your personal repository with the world. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.
If you have a new feature suggestion or find a bug, please get in touch via http://commandlinefu.uservoice.com/
You can sign-in using OpenID credentials, or register a traditional username and password.
First-time OpenID users will be automatically assigned a username which can be changed after signing in.
Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.
» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10
Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):
Subscribe to the feed for:
credit to tumblr engineering blog @ http://engineering.tumblr.com/
tutorial @ http://www.regular-expressions.info/lookaround.html
also see @ http://stackoverflow.com/questions/5080988/how-to-extract-string-following-a-pattern-with-grep-regex-or-perl for tip: `grep -Po 'name="\K.*?(?=")' file.txt`
possible options:
* Varnish
* Squid in reverse proxy mode
* Django's cache framework
* rack-cache
* or CDN, like Akamai
grep - Search file for character string
Search for one or more strings in one or more files. Examples:-
grep that myfile.txt
Look for the string ``that'' in the file called ``myfile.txt'' and print out each line that matches.
egrep -in "this|that" *.dat
Extended grep search *.dat files for ``this'' or ``that'' case insensitive (-i) and where found print line number (-n) along with the line contents.
If all three Session IDs are the same, then you've got SSL session caching running.
@ http://hezmatt.org/~mpalmer/blog/general/ssl_session_caching_in_nginx.html
With a couple of little commands, you?ll be able to ignore the .DS_Store files forever from your git repositories on mac!
The following command will add the .gitignore file to the git configuration
git config --global core.excludesfile ~/.gitignore
then, the following, will add the .DS_Store to the list
echo .DS_Store >> ~/.gitignore