| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 3 months |
| seen | May 3 at 20:26 | |
| stats | profile views | 12 |
|
Feb 22 |
awarded | Yearling |
|
Jul 22 |
awarded | Caucus |
|
Jun 12 |
comment |
File Sync Solution for Batch Processing (ETL) Have you looked into ETL tools to manage this process? e.g., Pentaho Data Integration or equiv + some basic scripts? |
|
Apr 4 |
comment |
I have both cable and DSL at home. How do I put that to good use? Very entertaining! |
|
Mar 26 |
answered | Format USB Drive with FAT on Mac with different Allocation Unit Size |
|
Mar 25 |
comment |
OS X Can't Access Netatalk Shares I am not familiar using these tools, but Apple has been changing up their AFP/NFS/SMB protocols in Lion. Not sure if they changed stuff in 10.6 though, but just a heads up. If these tools use kerberos or something similar, each system clock will need to be within a few minutes of each other as well. |
|
Mar 25 |
comment |
How do I change the default version of a unix executable? To add to Daniel's answer: MacPort's should have appended an export statement in your .profile or .bash_profile-- It will look like this export PATH=/opt/local/bin:/opt/local/sbin:$PATH If that line is not in there, add it and restart terminal. You can also type echo $PATH to see what is currently set in your shell. |
|
Mar 14 |
revised |
How to script a database migration using an SSH tunnel? added 12 characters in body |
|
Mar 14 |
answered | How to script a database migration using an SSH tunnel? |
|
Mar 12 |
revised |
What's the best way to extend wifi over a wired network? deleted 9 characters in body |
|
Mar 11 |
answered | What's the best way to extend wifi over a wired network? |
|
Mar 11 |
awarded | Critic |
|
Mar 5 |
comment |
Linux: Finding the largest directories on web host you can just keep digging in... sudo du -sh /var/www/* will show sizes for anything in that folder |
|
Mar 5 |
answered | Linux: Finding the largest directories on web host |
|
Mar 4 |
awarded | Commentator |
|
Mar 4 |
comment |
Route Add to VMWare image “The route addtion failed: the parameter is incorrect” bridged mode would be the super easy fix unless you have a reason not to have it on your local lan |
|
Mar 4 |
answered | How can I set up a “remote pair-coding” environment linux to linux? |
|
Mar 3 |
comment |
How to have sendmail write server IP in headers It's good practice to create an IN TXT and IN SPF record for each domain (e.g. company.com, mail.company.com, etc) |
|
Mar 3 |
comment |
How to have sendmail write server IP in headers Add an SPF for each domain that will be sending mail on your behalf. The process is the receiving mail server checks the ip address of the sending server, does a reverse lookup, looks for SPF/TXT records that states the sending ip address or domain is authorized to send the email. An example bind entry may be: @ IN TXT "v=spf1 ip4:192.200.20.0/24 ip4:74.200.200.0/24 include:support.zendesk.com -all" and @ IN SPF "v=spf1 ip4:192.200.20.0/24 ip4:74.200.200.0/24 include:support.zendesk.com -all" This would allow two subnets to send mail as well as zendesk. |
|
Mar 3 |
comment |
How to have sendmail write server IP in headers I would guess that this is your problem. Also make sure you have reverse DNS entries for your domain as well. |