Slashdot Mirror


User: thermal_7

thermal_7's activity in the archive.

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

Comments · 61

  1. Re:Does it have decent ad blocking yet? on Google Releases Chrome 25 With Voice Recognition Support · · Score: 1

    Er yes, it has Adblock Plus from the same people who make the Firefox Adblock Plus. They are not quite at feature parity, but the Chrome one has been good enough for a couple of years now.

  2. Re:code documents itself on How To Get Developers To Document Code · · Score: 1

    Shit yes. This is especially important when not so obvious bugs force a change in the code. If the why isn't explained through comments, other developers are likely to change it back to the simple solution with the bug.

  3. Re:new firefox release schedule moved me to Chrome on Firefox 8.0 Released · · Score: 1

    > new firefox release schedule moved me to Chrome

    You do realise Chrome also has a 6 week release schedule?

  4. Sorry, but the Chrome model makes sense on Mozilla To Remove User-Facing Firefox Version Numbers · · Score: 2

    - A Browser is more adaptable, in general more up to date with new technologies and probably easier to develop/maintain by focusing on smaller steadier releases.

    If you accept this then you should also accept:

    - With frequent releases, you don't want regular users to be constantly be hassled with updating their browser / add ons and flashing a new version number in their face, especially when there isn't much difference between versions.

    And in general, the version number of a browser is just confusing and irrelevant to regular users.

  5. Re:5 FINAL??? on Mozilla Ships Firefox 5, Meets Rapid-Release Plan · · Score: 2

    If you use the compatibility reporter plugin they will all run regardless of the version of Firefox. Then you can flag them as compatible or incompatible which notifys the author and prompts them to either make them compatible or flag them as compatible with the new version.

    https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter

  6. Lovely on Two Huge Holes In the Sun Spotted · · Score: 1

    So the sun is farting?

  7. Not quite as snappy on Thin Client, Or Fat Client? That Is the Question · · Score: 1

    I have been forced to do my development on a virtual machine at work. I can compare the performance well because my home and work machine are almost identical spec except for the virtualized bit. Note they both have an SSD and quad core.

    Performance is pretty good, but not good enough to make the switch worth it IMO. At home I never wait for trivial action to complete, like opening an application. At work however, sometimes the machine will lock up for a few seconds, which is enough to distract me. The feeling of, hmm its stuck, when is it going to complete, will usually drive me to check my mail/rss which makes focusing harder.

  8. Mistakes? on Programming Mistakes To Avoid · · Score: 2

    I very rarely see programming mistakes. There seems to be 2 kinds of programmers.

    - Those who care about what they do and try hard.
    - Those who don't care about what they do and don't try hard

    The later write terrible code, but it is just because they are either lazy or aren't suited to the profession and can't get enthused. Very rarely do you see someone who cares about there work make a big mistake (and if so they are probably just starting out).

  9. Re:As a programmer on 'I Just Need a Programmer' · · Score: 1

    In some cases I think you are right, but in other cases the developer is handed a relatively loose concept to implement and the genius in the minor details comes from the developer.

  10. .NET is doing great on Will Ballmer Be Replaced As Microsoft CEO? · · Score: 1

    Microsoft is now doing a great job with .NET which ties computers to their platforms. They have released the new ASP.NET MVC framework which finally provides a way to use the nice underbelly of .NET without using ASP.NET, which is an abomination.

    Then there are things like WPF and VS 2010 which are great positive steps.

    So peg this as a positive one.

  11. Re:Not my experience on The Puzzle of Japanese Web Design · · Score: 1

    Totally

  12. Re:We're going the wrong direction on Thoughts On the State of Web Development · · Score: 1

    I think you are missing an element. Black boxes as you say should be more reliable and have less bugs and security issues than code written by a random programmer. Take for example Hibernate. It is used by probably more than a 100,000 apps/websites. Only really obscure bugs are going to go unnoticed. Writing all your SQL by hand however is only used by one application and there is a greater potential for bugs/security issues to exist.

  13. Re:Frameworks on Whatever Happened To Programming? · · Score: 1

    Very true.

    I find the one place that what you say doesn't hold true anymore is in frontend work. When your HTML is 3 times the amount it should be, and your javascript is horribly inefficient, it may not run to an acceptable standard on someone with a slow network connection, on a 8 year old PC running IE6. In many cases you can't afford to be sloppy.

  14. Google won't leave Mozilla on Why Firefox's Future Lies In Google's Hands · · Score: 1

    I think Google is very happy about the existence of Mozilla and its plethora of open source projects.

    Google is focusing on breaking up the traditional desktop application way of doing things and moving it all to the web. They also want to loosen Microsoft's stranglehold on the computer industry.

    Supporting Mozilla helps to achieve both of these goals. The fact that it also helps decrease the number of users using Chrome is of lesser importance IMO.

  15. Re:Free trade of ideas, anyone? on Google Hacked, May Pull Out of China · · Score: 1

    I lived in Japan, one of the richest and most "successful" democracies in the world for 2 years. Some things I found out/noticed.

    - An obscene amount of advertising.
    - A ridiculously high suicide rate (32,000 or so a year)
    - Pathetic rights for workers. (I did homestay and the father worked from 9am to 10pm 6 days a week. For his "day off" he only worked 8 hours.)
    - A great lack of ability to change jobs or career paths. (If you do, you have to be lucky and be prepared to work very hard from the bottom again)
    - (Arguably) the hightest part time employment rate in the world (about a 3rd of the populace) and a low minimum wage (~$8 USD per hour)

    Granted it may be better than China, but democracy (capitalism) has hardly proven to be a wondrous solution.

  16. Re:One person's myth is another person's fact. on Myths About Code Comments · · Score: 1

    That's assuming that comments add a significant amount time to a project. Granted, that extraneous comments are not a good thing, however the whole reason it is considered a good idea in the community, is because a comment takes 10 seconds to write for the developer. When you wrote a piece of code you know exactly what it is doing and can comment with very little effort.

    You also need to consider, that it is dangerous not to have standards on when to comment. You may be very good about only commenting when appropriate, but there are many developers who put simply suck. They either write confusing code, or they just don't think too much about comments and add them almost randomly. With strict standards, you get a product that has been commented consistently, even if somewhat extraneously, which is a lot better than a lack of comments.

    As an example, you can comment methods in C# describing the method and the parameters which then show up in intellisense (tooltips). You could only comment methods that are not immediately understandable from the name of the method. But then, you don't know how other people might interpret these names. So you then play it safe and do ones that could be slightly confusing. Then you have 90% of them commented and the other 10% missing, which will likely concern other developers as to why they are missing. So, it is generally not worth the tiny amount of time you save being selective with comments.

    The other aspect is, I think it is excellent practice to write comments before you code. This way, you often find flaws in your logic before you write any code, thus saving time. Once it is all good, then you just fill in the blanks, in which case commenting doesn't add any time at all.

    It's a big assumption to say that all future developers to look at a block of code will understand it, especially when to you as the developer who wrote it it is all obvious.

  17. Re:You damn well should on Do Your Developers Have Local Admin Rights? · · Score: 1

    Support people have a whole range of skills that developers don't have. However, (good) developers should be almost just as competent at looking after their own machine.

  18. Re:You damn well should on Do Your Developers Have Local Admin Rights? · · Score: 1

    But seriously, what setting?

    As a developer, I don't play with settings because they shouldn't be a problem. I change them because I either need to, or they make things a lot easier for me. In other words, I change settings as part of my job. Not taking minor risks like this results in ugly workarounds. We have settings for a reason.

    Let's deal with problems as they come up, rather than being super cautious with our machines.

    (I personally have never gone to a sysadmin other than to get privileges granted.)

  19. Re:Programming on How To Teach a 12-Year-Old To Program? · · Score: 1

    Great advice! I also tried to teach my son to program, but he wasn't interested. I think the 'key' is to find something he is interested in that he has to learn to program to do it.

    Or you could find something he is interested in and let him do that. I love programming, but I see a lot of people who do it and don't like it at all and they suck.

    It's not something you should choose as a career unless you really get into it IMO.

  20. Re:I'm sorry, but you are wrong. on Microsoft Poland Photoshops Black Guy To White One · · Score: 1

    I lived in Japan for 2 years and experienced all the things you mention (minus the cops) and they bugged me the same way, but since coming back to my home country I have gained some perspective.

    That is not racism. Japanese people are just on the whole very very culturally insensitive. We (English speakers) generally don't compliment each other and when we do it is usually heart felt. The Japanese people do it ALL THE TIME. Especially when they meet someone new and especially when they are nervous, like when meeting a gaijin.

    Similarly, they don't see people in American using chopsticks on TV and spent years and years learning kanji in a mind numbingly ineffective method, so they won't expect you to be able to use chopsticks or write kanji.

    You can't really expect much else from a country with something like 1% foreigners. Plus they still show Full House on TV.

    However, as a foreigner you can know their culture. You are the one who needs to show cultural sensitivity and respond in ways they expect when they compliment you. They may be insensitive but there is no ill intent.

  21. Re:Don't forget to pull the trigger. on Where Does a Geek Find a Social Life? · · Score: 3, Informative

    I really suggest reading "An Intelligent Life - A Practical Guide to Relationships, Intimacy and Self-Esteem" by Julian Short. It sounds like you don't have a lot of self-esteem and this book teaches you how to address the problem. It's very scientific and ties into our evolution. I also don't have a lot of self-esteem and it has really helped me.

    There are ways to do the first touch as if it is inadvertent. Or you can even just relax about avoiding touching a girl and you will sometimes brush each other accidentally. You could always kind of usher her through a door or a crowd guiding her back with your hand or something.

    However, I don't think you need to worry too much about touching them first before making a move/kissing them. There is nothing wrong with doing this as long as you already have something of a rapport with them and you make your move in a clear and deliberate way and they are aware of what you are doing. You don't need to do this in situations that are super scary (suddenly kissing a hot stranger). If you are the center of attention then I don't doubt you will meet or know girls who are sending you signals that they like you are want you to make a move. When you are talking to them and you sense this, wait for a pause, keep looking into their eyes and start moving into the kissing position.

    They will realise what you are doing and start moving their heads, or they will not move their head or pull back. Anyway, it should be really obvious from their faces as to how they feel about the idea so you will know whether to proceed (some girls with play hard to get and not let you know they want you to kiss them, but not many I think). The important thing to remember (I hope I can remember it!) is that you will be fine if they reject you for whatever reason and will learn from the experience.

    Probably the reason you can't have conversations with people who are worse than you, is that you feed off each others anxieties (he looks anxious, I'm not doing a good job). You just need to work on your self-esteem I think.

  22. Some book recommendations + advice on Where Does a Geek Find a Social Life? · · Score: 1

    1. "An Intelligent Life" by Julian Short - Goes into the nature of self esteem and the importance of relationships, which is tied back to our evolutionary roots.
    2. "Passionate Marriage" by David Schnarch - All about romantic relationships.
    3. "Manhood" by Steve Biddulph - About men and how they mature.

    I would read them in that order.

    Some advice.
    - Don't limit yourself to meeting geeks. You (I assume since you posted this) need to grow more as a person. You won't broaden your horizons if all your friends are like you. As others have suggested take something up.

    - Don't treat relationships, in particular romantic relationships as problems to be solved. Relationships are about intimacy and basically showing yourself. You are not showing yourself if you are hiding behind calculated action. This is even more true with sex. If you are running through check lists of things to do and constantly analyzing you are not connecting with your partner which is what produces good and passionate sex.

    - Throw yourself into it. If you are not experienced it will take a while before you gain confidence. Try to make lots of friends. You will slowly learn what kind of people you really want to spend time with and develop your social skills.

  23. This is a message to the sinner. on 14-Year-Old Boy Smote By Meteorite · · Score: 1

    That will teach him to masturbate.

    *slowly closes porn windows*

  24. Re:Definitely irrelevant on Google Earth Raises Discrimination Issue In Japan · · Score: 1

    They are not racist, they just have stereotypes of foreigners, much like we all do. The main difference is that as a culturally undiverse place, they naturally place more weight on them.

    This is completely human and normal. The foreigners that come to Japan have certain tendencies and TV also likes to depict them in a certain light which reinforces mistruths. If all the foreigners you have met or seen before were fun loving and rambunctious then you aren't going to try and engage one you just met in a discussion about foreign policy!

    Regarding having them understand your Japanese. The test you are talking about would be the JLPT I take it, which doesn't test speaking or pron, so it doesn't mean people should be able to understand you. However, I do agree many people, especially old people just assume you are speaking English and don't listen to you. I also hate it when I ask a question like "What time will the next train depart?" and they feel the need to show the numbers on their fingers.

    Anyway, I do not think the large majority of them are racist. I just think they are culturally immature and insensitive. Don't forget they do tend to get enamoured by us easily due to their false stereotypes. My friend who has been in Australia for 7 years said she still sometimes gets nervous speaking to people with blond hair and blue eyes from the awe she feels. It's hard to call that racism.

  25. Re:New ads on Microsoft Uses "I'm a PC" Character In New Ads · · Score: 1

    These ads are as good as the other ones were bad, and they were REALLY bad.

    I don't think that the other ads were bad. Microsoft is seen as a heartless and monolithic corporation. They knew that if they just came straight out with an ad campaign trying to sell more computers or change their image, many people would just shrug it off, without really paying attention to it's message. The Seinfeld ads served to shake up this view and made people more inquisitive as to what MS has to say.