Messages - eleman [ switch to compact view ]

Pages: prev1 ... 56 57 58 59 60 [61] 62 63 64 65 66 ... 82next
301
Living Room / Re: Apple Rejecting Apps That Use Dropbox
« on: May 02, 2012, 05:20 PM »
Uh, don't take me as a fanboi, I wouldn't be caught dead owning an Apple product.

But I don't believe that Apple's policies constitute violations of anti-trust laws, because, as I said, there is a viable competition. Consumers have the very real and reasonable option of telling Apple "go forth and multiply".

What I'd concede, however, is that jailbreaking is technically a crime (violation of DMCA). That twists the concept of ownership.

So, if I were a US citizen, I'd be demanding the government to fix the intellectual property rights regime for good, instead of interfering in a single firm's policies. The disease is more deep-rooted. Focusing on symptoms won't do much good in the long run.

302
Living Room / Re: Apple Rejecting Apps That Use Dropbox
« on: May 02, 2012, 05:08 PM »
But there is a viable competition.
Apple has a dominant market position in only the market for "Apple products". Not in smartphones, not in laptops, not in desktops, and given market trends, not in tablets (at least not for long).
Do you really want government to intervene because Apple has a monopoly in producing iphones or ipads?
Apple is no more dominant in any product category than General Motors is dominant in cars.
But General Motors has a dominant market position in making Cadillacs. Should government intervene to foster competition?

303
Living Room / Re: Apple Rejecting Apps That Use Dropbox
« on: May 02, 2012, 04:44 PM »
Mine may be a technically ignorant rant but I don't see how Apple has a dominant position in any market. (OK, yes maybe in the tablets market, but it should be eroding fast, now that competition is really churning out android tablets).

Asking government intervene on Apple's policies is like saying "Daddy, Mike won't let me play with his ball."

The better (and more dignified) stance would be telling Apple (or Mike for that matter), take the gadget (or the ball), and use it for a "thoroughly personal" function.

There are other gadgets (and balls) you know.


305
General Software Discussion / Re: free antivirus
« on: April 28, 2012, 05:43 PM »
or just use the VirusTotal Uploader

Here's a quick autohotkey script that makes virustotal uploader even more simple:

^!v::  ; hotkey to call upload to virustotal.com function (ctrl-alt-v)
; virustotal uploader must be installed at "C:\Program Files\VirusTotalUploader2\VirusTotalUpload2.exe"
{
VirusFile := % gst()   ; assign full path of the selected file to a variable

Run, C:\Program Files\VirusTotalUploader2\VirusTotalUpload2.exe "%VirusFile%"
}
Return


gst() {   ; GetSelectedText or FilePath in Windows Explorer by Learning one
   IsClipEmpty := (Clipboard = "") ? 1 : 0
   if !IsClipEmpty {
      ClipboardBackup := ClipboardAll
      While !(Clipboard = "") {
         Clipboard =
         Sleep, 10
      }
   }
   Send, ^c
   ClipWait, 0.1
   ToReturn := Clipboard, Clipboard := ClipboardBackup
   if !IsClipEmpty
   ClipWait, 0.5, 1
   Return ToReturn
}
Return

press ctrl-alt-v with the file selected in windows explorer, and voila!
Here's the compiled script - 199.6 Kb

btw, virustotal uploader must be installed at "C:\Program Files\VirusTotalUploader2\VirusTotalUpload2.exe"

p.s.: I got the gst() function from someone else's script. I don't remember whom or where though.

Pages: prev1 ... 56 57 58 59 60 [61] 62 63 64 65 66 ... 82next
Go to full version