Slashdot Mirror


User: appavi

appavi's activity in the archive.

Stories
0
Comments
32
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 32

  1. Re:It's called Use Tax on California Balks At Internet Sales Tax · · Score: 1

    It's not only California, almost every other state that imposes Sales tax also applies Use tax.

    Sales Tax - Tax that is collected by the seller on behalf of the taxing authority(state/county/city) on the goods that are purchased within the jurisdiction of the taxing authority.

    Use Tax - Tax which needs to be paid by the buyer to the taxing authority for the goods that are purchased from the seller who is based outside the jurisdiction of the taxing authority.

    It is easy to enforce Sales tax because you can identify sellers within the jurisdiction based on licenses. It is difficult to enforce/audit Use Tax because it is voluntary. Most of the time the sellers are based in jurisdictions outside the taxing authority and so sellers cant be controlled by state goverment.

    New York Cigarette Tax is one example of Use tax that was enforced aggresively.

    Wikipedia entry for use tax

  2. Re:Distributed Hosting on Wikipedia On the Brink? Or Crying Wolf? · · Score: 1

    Have a look at Wikimedia servers page. It's more advanced and complicated than what you think.

  3. Re:Tamarin on Adobe To Release Full PDF Specification to ISO · · Score: 1

    The Tamarin Project mentions Firefox 2, and as far as I can tell from reading the Firefox 2 features, it never made a new impact in the 2 release. Will this impact Firefox 3? When will it be implemented, and what exactly does it mean?
    It is Mozilla 2 not Firefox 2. All the Mozilla products like Firefox, Thunderbird uses Gecko engine underneath. Firefox 2 is based on Gecko engine 1.8.1 and Firefox 3 will be based on Gecko engine 1.9. Mozilla 2 is the major change to the underlying Gecko engine which will be used by Firefox future versions after Firefox 3.

    More about Mozilla 2
    http://weblogs.mozillazine.org/roadmap/archives/20 06/10/mozilla_2.html
    http://weblogs.mozillazine.org/roadmap/archives/20 06/11/project_tamarin.html
  4. Re:Google's touch on Google Checkout Sees Poor Customer Satisfaction · · Score: 2, Informative
    Google Blog Search - far behind Technorati

    According to Hitwise, Google Blog Search traffic over took Technorati's traffic in December.
  5. Re:SQLite on Firefox 3 Plans and IE8 Speculation · · Score: 1

    SQLite is not a new feature in Firefox 3. It is already available in Firefox 2.0.

  6. Re:Explanation & Possible Solutions on GMail Vulnerable To Contact List Hijacking · · Score: 1

    Even I am also new to Cross site scripting and I am learning about it. Today I discovered that I was wrong when I said third party websites cant make POST request to websites in different domain. Actually they can make POST requests through iframes but they cant read the data sent by the server due to same origin policy[1].

    When a request is sent to the server either one of the following things may happen,
    1. Data remains the same in the server after the server completes the request.
    Ex. Get the list of all contacts. In this case data is not changed in the server side. This is just a Data request.
    2. Data gets changed due to the incoming request.
    Ex. Transfer $100 from Account A to B. In this case data gets changed in the server side.

    My solution works only for request which are of type 1 and it will fail for requests of type 2. Gmail vulnerability discovered now belongs to type 1 request where data is not changed. Even if the third party web sites makes a POST request to Google site, they will not be able to read the data. So my solution works for Gmail vulnerability but it may not work for other type of requests where data is changed in the server side due to the client request.

    [1] I simulated this case in my pc, I was able to make POST requests using to a different website iframes. But I was not able to read the data that was sent from the server to the iframe. If you want peek at these files, just drop me an email.

  7. Re:Explanation & Possible Solutions on GMail Vulnerable To Contact List Hijacking · · Score: 1

    Thanks for your comment. I forgot about 405. 405 will be the appropriate status code in this case.

  8. Re:Explanation & Possible Solutions on GMail Vulnerable To Contact List Hijacking · · Score: 1

    I have posted this solution earlier in this thread. Since you are asking I am posting it again. Easiest way is to filter by HTTP Request method.
    1. Check for the HTTP Request method. If it is POST, send the data. For other request methods like HEAD, GET send HTTP Status code 403(Forbidden).
    2. For Google applications, they should use XMLHttpRequest and POST method to retrieve the data. This will be allowed due to same domain policy.
    3. Unless otherwise specified, browsers does a GET request for a required resource. So javascript url in scripts tag of third party web sites will be processed as GET by browser and will get a 403 response code. So third party websites must use POST to get google data which is impossible due to same domain restrictions.

  9. Re:Which is the problem? on GMail Vulnerable To Contact List Hijacking · · Score: 1

    Even with JSON it is possible to prevent these type of leaks. For the requests that contains sensitive data, send data only if the HTTP request method is POST. If it is GET, then simply give a 403. Third party websites can get javascript file/data from Google only through GET(using script tags, not with XMLHttpRequest). They can't make POST request because they will be prevented by same domain policy. Google applications can retrieve the data through POST method using XMLHttpRequest because they will be in the same domain.

  10. Re:not Vista/IE7-specific on Microsoft Applies to Patent RSS in Vista · · Score: 1

    MS Patent covers a central system that will be responsible for aggregating various feed formats (RSS, Atom, RDF) and provide a common interface to other programs for using the feed information. Availability of several feed formats and the errors in them makes a nightmare for the applications that need to use feeds. So a common system will be helpful. Several parsers available today to parse RSS and Atom feeds. The most popular one is Universal Feed Parser parses all known web feeds and presents, feed data in usable form that can be used by the application developers. UFP is part of popular open source feed based applications like Planet Feed reader and Democracy Player. So Microsoft's patented process is nothing new. Most of it can be claimed as prior art.

    Also Read
    Niall Kennedy's wonderful analysis of the MS feed patent.
    Blog post by Microsoft Program Manager Lead for RSS Sean Lyndersay defending this patent.

  11. Re:"Open source?" on Open Source AJAX toolkits · · Score: 1
  12. Re:Did anyone RTFA ? on Indian Government Lifts Ban on Blogs · · Score: 2, Informative

    Absolutely true. Indian govt banned only 17 websites. But the ISPs blocked the websites that are not in the list. Indian newspaper Hindu has posted the copy of govt order that is sent to ISP for blocking the websites.

  13. Re:Missing one... on Slashdot Firefox Extension · · Score: 5, Informative

    Camino doesnt support extensions.

    From Camino FAQ

    Q. Does Camino support Firefox extensions?
    A. No, and it never will. Firefox extensions rely on XUL (a user interface toolkit made by the Mozilla Foundation) to interact with the user and draw their interface. Camino uses Cocoa (an interface toolkit made by Apple) and does not support XUL.

    Also from the interview with Camino Project lead Mike Pinkerton

    We recognize this is a problem for our users, but extensions only exist because of the cross-platform UI layer upon which Firefox is built. It's that same cross-platform UI layer that makes Firefox feel "wrong" on Mac OS X. Camino's use of Cocoa for the user interface makes it fit in with the rest of the platform, but prohibits us from using extensions. We feel this is a trade-off worth making. That said, we are investigating ways to allow non-user-interface extensions to register and work correctly.

  14. Re:Opera? on Slashdot Firefox Extension · · Score: 5, Informative

    Opera 9 Beta supports greasemonkey scripts. Greasemonkey scripts should work in opera as is or with some minor modifications.

  15. Re:Architecture of the World Wide Web - Post gone on S. Korea Cloning Success Faked? · · Score: 1

    Sad state of slashdot.The editors are not bothered to look into the link they post. Why osdn is still keeping editors like Zonk who regularly post dupes and posts like this ? Dont they have any performance reviews for the editors ?

  16. Architecture of the World Wide Web - Post gone on S. Korea Cloning Success Faked? · · Score: 2, Interesting
  17. Re:While they're there... on Google Corrects Gmail Security Flaw · · Score: 1

    use Gmail secure Greasemonkey script.
    http://www.userscripts.org/scripts/show/784

  18. Re:How can local government regulate the airwaves? on Unsecured Wi-Fi to Become Illegal? · · Score: 1

    Westchester County executive Andrew Spano is seeking for reelection next week. Andrew Spano is unpopular among Westchester County residents due to the bad handling of bus strike during this year. I dont think this legistation will be made into law.

  19. Re:Nice. on Firefox 1.5 Beta 2 Released · · Score: 4, Informative

    You can use Greasemonkey 06.2 beta for Firefox 1.5.

    more details in Greasemonkey blog
    http://greaseblog.blogspot.com/2005/09/firefox-15- compatible-greasemonkey.html

  20. Dupes by Zonk on Trusted Computing And You · · Score: -1, Troll

    Its time to add the link "Dupes by Zonk" in the "Related Links" section

  21. Coral Cache on Plugin Lets Users Turn IE into Firefox · · Score: 1

    Site Slashdotted. Coral Cached
    http://www.getfoxie.com.nyud.net:8090/

  22. Linus on Linux Trademark Protection In Australia · · Score: 2, Informative

    Linux Trademark owned by Linus
    See Slashdot post
    http://slashdot.org/articles/00/01/19/0828245.shtm l

  23. Greasemonkey Presentation at OSCON on Fun Stuff at OSCON 2005 · · Score: 1
  24. Re:Thanks on Net Marketers Worried as Cookies Lose Effectiveness · · Score: 1

    Actually you dont have to manually remove the cookies. If you setup the option of Keep Cookies until I Close Firefox then Firefox automatically clears the cookies when you close the browser. I have this option setup.

    In Firefox 1.1 has an option called Sanitize. Sanitize is invoked it clears the cookies, cache, history, saved form/password info. ya you can customize the items you want sanitize. you can also set the firefox to execute Sanitize option whenever you exit firefox.

  25. Re:Bill answer this on Bill Gates Swears Vow Against 'Son of iPod' · · Score: 1

    >>How many malwarez does it take for the proles to get fed up?
    joe user will live with it by buying anti spyware from M$. firefox only has 10% in browser market share in spite of IE being hounded by loads of spywares. finally some education is needed for joe user to understand the problems of insecure software developed by world's largest software company and move to a better one.