Computing desk | ||
---|---|---|
< August 31 | << Aug | September | Oct >> | September 2 > |
Welcome to the Wikipedia Computing Reference Desk Archives |
---|
The page you are currently viewing is an archive page. While you can leave answers for any questions shown below, please ask new questions on one of the current reference desk pages. |
Would it be possible to transclude (using the Wikipedia definition) posts on phpBB forums, say, or even Yahoo! Answers on blogs like Livejournal, or anywhere at all with some code? (I was thinking about RSS since that's sort of how it works, but not sure if it could be transcluded in this manner.) 62.255.129.19 (talk) 00:01, 1 September 2012 (UTC)
I get at least 20 spam emails every day from my own full name, first and last and I do not have a common name. It all stems from one Canadian pharmacy order years ago (the drugs when they arrived were shipped from India so I doubt the website was really Canadian). I get at least 100 spams a day, mostly for viagra and other drugs. Anyway, I've set my filters really well, so I only have about five spam messages that get through to my inbox. But I am a bit worried that if they're sending my name to me (which doesn't seem the best method for getting me to open up the email since I know it's not from me) they must be sending these to lots of people. If my name was like John Smith, I wouldn't worry, but anyone can Google my name and they will only find me. Is there anything I can do?--108.54.25.10 (talk) 01:45, 1 September 2012 (UTC)
When I installed my new 2 terabyte hard disk, I copied everything from my two personal partitions (one for my main files, one for my photographs) across to the new disk. But after I had done that, disk usage reports (both du
and System Monitor) reported slightly less usage on the new partitions than on the old ones. It was in the order of about .1% to 1% difference. I had made sure I copied all the hidden files and directories too by not using cp -rp /oldhome/jip/* .
but instead cp -rp /oldhome/jip /home
, as *
fails to expand to any hidden files or directories (I think this is by design). But the cp
command finished OK, and so far it seems that all the files are there. Is this because my old partitions were ext3 but my new ones are ext4, and ext4 somehow makes more efficient use of disk space? JIP | Talk 18:13, 1 September 2012 (UTC)
shopt -s dotglob
(though simply specifying the directory to copy, as you have, is, of course, cleaner.) The difference in space usage may be due to many things - block size, fragmentation, treatment of sparse files etc (dumpe2fs
will display tunable file system parameters.) You can make du
display just the file sizes (--apparent-size
.) If those numbers match the difference is surely due to filesystem internals. Finally, you can do something like diff <(find /mnt/oldhome|sort) <(find /home|sort)
(I now see it's more complicated than this, but you get the idea) if you're unsure whether all files are there 92.226.93.192 (talk) 12:38, 2 September 2012 (UTC)I recently purchased an ASUS Eee PC Seashell series with a 1.6 Ghz Intel Atom processor, Win 7 Starter and 1GB of RAM. I am looking to install Microsoft Office 2010 on it to take notes for class. Given the hardware limitations of a netbook, would you recommend that I install the full version or the Starter version? In other words, is there a difference between system resource usage between the two versions that will lead to a difference in speed? Also, would an earlier version of MS Office run faster?
Thanks. Acceptable (talk) 22:00, 1 September 2012 (UTC)
Thanks for the help guys, I decided to go ahead and install the full version of MS Office 2010 on the netbook. So far, things are working very smoothly and I'm pleasantly surprised at how fast it's running. My reason for choosing MS Office 2010 rather than earlier version is for compatibility reasons when I am syncing the netbook with my other computers. Thanks! Acceptable (talk) 17:32, 2 September 2012 (UTC)