User login

Public

Server blocking someone who should have access? Try etc/hosts.allow

Blocked and receiving an error "ssh: connect to host" "port 22: Connection refused", Stefan added the IP address where this was not working to the hosts allow file, and explained the system.

There's two relevant files: /etc/hosts.allow and /etc/hosts.deny

/etc/hosts.deny is updated by the denyhosts package based on attacks and suspicious behaviour. it can be overridden by /etc/hosts.allow

An entry consists of a service, such as ssh, and a number of IP addresses.

Git revert a commit

To revert a very simple commit, this is enough:

git revert ba24a3fdeae4a3a034691308171d798d2ddbf93e

Where that long string of characters is the ID of the commit you are reverting.

For a more careful approach to a complex revert, read on...

(if things go horribly wrong we can throw out this branch-- note we may have to commit everything in the branch in order to switch to another branch and delete this one with git branch -D revert-alpha-6

Do not link to the page we are currently on

Is this a generally accepted concept that links on a page should never go to that page itself?

Found this: "No link in a menu should simply reload the page itself"
http://www.webmasterworld.com/forum21/3705.htm

How to do it:

Menu System - Drupal API
http://api.drupal.org/api/group/menu/7

Export and re-import a database with Drush and the command line

These are run from the project's web root, example/web, so that drush can run, but the database itself is stored outside the web root, example/db.

On the export side:

drush sql-dump > ../db/development.sql

On the import side:

drush sql-connect < ../db/development.sql

expands to:

mysql -hlocalhost -uexample -pyMsx2rIP drupal-example < ../db/development.sql

Strongarm usage notes

Strongarm does not have its own administration page (that does anything). Add variables to your export by going to the Features administration page.

Background

http://developmentseed.org/blog/2009/dec/04/strongarm-2-leaner-and-meaner

Ubuntu keyboard shortcuts

I've been using Ubuntu part time and it took me forever to find these critically useful navigation-aiding shortcuts:

ctrl option [left arrow, right arrow] switches desktops

ctrl option shift [left arrow, right arrow] switches desktops taking the active window with you

option tab (and option shift tab) cycle through the open windows on a desktop in most recently used (and reverse) order.

An interesting RFP for a Network of Networks: HASTAC.org

The primary goal for the new hastac.org is to be simple and flexible. We are an organization that is always changing, and we expect our web site to be able to evolve along with us as we expand, experiment, and learn together. In our request for proposals we outline a number of specific approaches that we think will help us accomplish our mission effectively, but no single feature is as important as the need to keep the site easy to manage and simple to change in the future.

Ignore all Vim temporary files


v ~/.gitignore

*.swp
*.swo


git config --global core.excludesfile ~/.gitignore

Syndicate content