Most of programs will not accept an email using just @localhost as domain.
So, edit /etc/hosts file to make the domain localhost.com point to your machine, including this content to the file:
127.0.0.1 localhost.com
Most of programs will not accept an email using just @localhost as domain.
So, edit /etc/hosts file to make the domain localhost.com point to your machine, including this content to the file:
127.0.0.1 localhost.com
| I had to change the [remote "origin"] / url field in my local .git/config to use the Host defined in .ssh/config in order for this to work, i.e., | |
| [remote "origin"] | |
| url = git@github.com-activehacker:activehacker/gfs.git | |
| Without that modification, git would just try to use my default ssh key. |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| <?xml version="1.0"?> | |
| <jxb:bindings version="1.0" | |
| xmlns:jxb="http://java.sun.com/xml/ns/jaxb" | |
| xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
| xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" | |
| xmlns:inheritance="http://jaxb2-commons.dev.java.net/basic/inheritance" | |
| jxb:extensionBindingPrefixes="xjc"> | |
| <jxb:bindings schemaLocation="../schema/yourSchemaFile.xsd"> | |
| <jxb:bindings node="//xs:complexType[@name='SomeElementNameFromYourSchemaFile']"> |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |