)
Technology, Art, Solution, Tips, Multimedia, How To, What Is, Programming, Software, Freelance
Mar 13, 2014
Mar 12, 2014
Create FTP folder at Windows Explorer
1. Start Menu->Computer
2. On the left pane: right-click computer-> add network location
3. Follow the wizard and type in your ftp location (ftp://yourusername : password@yourftpsite.com)
4. Right click the network location and send to your desktop as shortcut.
Mar 11, 2014
ASPX Forms Authentication Across Applications
<configuration>
<system.web>
<authentication mode="Forms" >
<!-- The name, protection, and path attributes must match
exactly in each Web.config file. -->
<forms loginUrl="login.aspx"
name=".ASPXFORMSAUTH"
protection="All"
path="/"
domain="contoso.com"
timeout="30" />
</authentication>
<!-- Validation and decryption keys must exactly match and cannot
be set to "AutoGenerate". The validation and decryption
algorithms must also be the same. -->
<machineKey
validationKey="C50B3C89CB21F4F1422FF158A5B42D0E8DB8CB5CDA1742572A487D9401E3400267682B202B746511891C1BAF47F8D25C07F6C39A104696DB51F17C529AD3CABE"
decryptionKey="8A9BE8FD67AF6979E7D20198CFEA50DD3D3799C77AF2B72F"
validation="SHA1" />
</system.web>
</configuration>
Reference
http://msdn.microsoft.com/en-us/library/eb0zx8fc(v=vs.100).aspx
Keep NodeJS running forever
reference: https://blog.nodejitsu.com/keep-a-nodejs-server-up-with-forever/
- Monit: http://mmonit.com/monit/
- Upstart: http://upstart.ubuntu.com/
- Daemontools: http://cr.yp.to/daemontools.html
- Launchtool: http://people.debian.org/~enrico/launchtool.html
Mar 10, 2014
Mar 8, 2014
Mar 7, 2014
Mar 6, 2014
Subscribe to:
Posts (Atom)