Search results

  1. K

    Geforce GTX 1060 Thread: faster than RX 480, 120W, $249

    I didn't check all the french e-tailers, but I could not find a 1060 in stock at those prices the last 3-4 days [1] (all cards are of of stock, bar one model available but 350€+) No difficulties to find a reference 480 under 300€, and no model at all over 300€, however. [2] (no sign of the...
  2. K

    Batman Arkham City, no physics at all if you don't use physx ?

    First, my apologies for scheming in this heated discussion. In Mathematics, some conjectures are widely considered as truths (some are even considered axioms), but have been proven unprovable (i.e. someone actually expressed a mathematical proof showing that the said conjecture could never be...
  3. K

    Batman Arkham City, no physics at all if you don't use physx ?

    You seemed to imply that scripted, biased physics were significantly worse than "true" physics (and cited as an example GPU PhysX). I merely responded to that assertion, saying that scripted physics weren't necessarily a bad thing (be it on CPU or GPU). No mention whatsoever of CPU graphics (you...
  4. K

    Batman Arkham City, no physics at all if you don't use physx ?

    In my humble scientific opinion, what you call a scripted destruction/animation and dynamic destruction are just the same kind of physics approximation, but on a different precision/scale/bias ... And to continue with my analogy with RT, current games (with raster engines) are often more...
  5. K

    Batman Arkham City, no physics at all if you don't use physx ?

    Note : Apologies for digging this quote from this long running thread. That's exactly why I said this whole argument seems very similar to what I heard in raster/raytrace debates. Some ray tracing proponents argue raster engines are not rendering "real" graphics (read "unbiased"), but are...
  6. K

    Batman Arkham City, no physics at all if you don't use physx ?

    There has been quite similar debates regarding raster engines and raytracing engines : raster engines are known for the need of lots of careful tweaking, tricks and artwork adaptations in order to look ok whereas any good RT engine require much less special attentions on shaders, artwork nor...
  7. K

    iD Software Rage Video Card Requirements & (Fermi) OpenGL

    Looks like it was a motivated change (which I do not agree with) : http://en.wikipedia.org/w/index.php?title=GeForce_400_Series&action=historysubmit&diff=441441943&oldid=441321748 I think the whole section could be re-added if backed up by some "tier 1" review websites links, and maybe those...
  8. K

    SQL GROUP BY query dilemma/question

    You cannot have TRANSACT-SQL in a view definition. You can use a table function or a view instead to build your @CodeTable. CREATE FUNCTION [dbo].[fn_SEQUENCE] ( @START float, @NB int, @STEP float ) RETURNS @SEQUENCE TABLE (SEQ float) AS BEGIN DECLARE @V float DECLARE @C int SET @V...
  9. K

    Which languages do you feel most comfortable in?

    C, C++, PHP, C#, JavaScript (basically most C-based languages). Others : SQL (a lot), XSLT, SVG, HTML, CSS and Pascal I also feel confident in VB, but I don't like it so much anymore (I played a lot with it, but always ended using Win APIs directly within VB, so I switched to C++). Re...
  10. K

    Intel HD 3000 vs GT 520m

    Also, don't forget that Sandy Bridge's QuickSync is probably as good as the 520m for video processing (if not better, if you take power consumption into account). I don't remember if the latest Optimus iteration is able to use QuickSync or if it's constrained to the discrete GPU for video...
  11. K

    Javascript Question - Adding potential matches to search results on form field

    Not so easy as it seems : you'd have to tackle this with AJAX and server-side search (you DON'T want to ship the N friends names with your page and compute the matches in javascript). So : - on key press, verify if you're beyond a threshold (say, 3 chars ; important for performance reasons ...
  12. K

    What is wrong with my code/logic?

    Huh, didn't see your code, so I can't make hard assumptions, but keep in mind you must not move the 4s, just other numbers. EDIT : Oh yeah, I think I wrongly understood you wanted to append all the 4s and 5s at the start, but nothing prevents you to allocate the whole resulting array and copy...
  13. K

    CSS Help

    Also, keep in mind that there are discrepancies in font-metrics between GDI (FF3.6, Chrome, etc.) and DirectWrite (FF4) rendering. IE9 seems to compensate a bit for these discrepancies (in order to obtain the same line height with or without hardware acceleration) and Mozilla is considering...
  14. K

    Which is more readable?

    Also, the two options have a kind of different feeling : - the first would enumerate all items in this.SmartFiles and call ExtractInfoFromFilePayload on them - whereas the second one will enumerate only the FileSortCell items in this.SmartFiles and call ExtractInfoFromFilePayload on them...
  15. K

    firefox 4 released

    Kerning should theoretically be better due to sub-pixel positionning in DirectWrite (i.e. the text rendering backend used with D2D with HW on). With GDI, letters were "snapped" to pixel boundaries. I think we just have to get used to it. I also hope DW rendering will be improved by MS as more...
  16. K

    Getting DIV content to left left.

    Your CSS rule "position: relative; top: -14px;" displace the span 14px upward, but as the "position: relative;" spec says, the browser renders content as if the span was still there. You should use "position: relative;" on the containing div (to make sure subsequent absolute positioning is...
  17. K

    Floating a DIV and wrapping text around it?

    AFAIK, you *cannot* achieve what you want if the floating element is not defined directly above the concerned paragraph. I just tried with the float at the beginning of the document (and with a positive top margin) and the whole space above the space (the said margin) is left blank. I also...
  18. K

    CSS- Where to start and is this the best way to go?

    +1 CSS Zen Garden +1 Firebug I found the Mozilla Developer Network (https://developer.mozilla.org/en-US/docs) quite helpful too (well written, with a lot of examples, etc.)
  19. K

    What card is the best bang for your buck now

    Amusingly enough, in France, 6850s are (in general) cheaper than 460s (1GB) by a few bucks (but not much). Nowhere near this $40 discrepancy in favor of the 460. However, 460 768MB are almost the same price than 5770s 1GB (~150€ for 460 vs ~140€ for 5770)
  20. K

    Reading from XLS

    If you just need to read the data in the XLSs, I think you can use the Microsoft Jet Engine with an Excel provider (IIRC, there is a standalone provider). The is some caveats with this method (for example : only the first 8 lines are used to determine if the string columns are varchar(255) or...
  21. K

    SQL Server db size, name, version query

    No prob.
  22. K

    SQL Server db size, name, version query

    I think you're missing some select statements in your subqueries. That should be something like that (not tested on my side) : create table #GEventTemp (dbname varchar(50), sxversion varchar(10), dbsize decimal(10,2), tablename varchar(100), numberofrows varchar(100), reservedsize...
  23. K

    SQL Server db size, name, version query

    You cannot juxtapose a select statement and an exec statement. To keep track of the database name, you could do something like that : create table #GEventTemp (dbname varchar(50), tablename varchar(100), numberofrows varchar(100), reservedsize varchar(50), datasize varchar(50), indexsize...
  24. K

    what script runs in a browser?

    As said before, if you do not want to make-it a web service (the sole reason I can think of would be bandwidth), then you are stuck with client-side JavaScript (I'm not sure VBScript runs in all browsers). Alas, you will have to fight against browser inconsistencies (especially with...
  25. K

    LINQ / SQL question.

    +1 for flagging. I sometimes implement a kind of trash (flag first, and then allow the admin/super-admin to delete / clean the trash). This is also useful when implemented for important/precious data, or like companies (clients), bills, etc. : you can then keep trace of the "delete" command...
  26. K

    Programming interview questions

    Well, I'm definitely in #1 category (and even more so when I was hired 6 years ago, for my first job). I cannot stress enough how difficult it can be to handle someone like me (very highly technical, but no administrative skill whatsoever, and average communication skills). I made great...
  27. K

    what script runs in a browser?

    I would also suggest to create a web service (written in Perl). That would ensure you two things (+1 bonus) : - All the aggregation mechanism is hosted on the server, allowing some easy data caching, easy maintenance (no compatibility headaches between browsers and such), easy throttling if...
  28. K

    Timestamp SQL date field with PHP time

    If all of your data is available in your query (all data is in fields), then it is quite trivial to calculate the needed values in SQL. Alas, I do not really know what you want to do, and thus cannot provide you specific code snippets. What is the difficulty : adding your (integer ?) offset to...
  29. K

    Timestamp SQL date field with PHP time

    If I understand your problem well, you could always code your SQL query for it to return normalized strings (ODBC : yyyy-mm-dd hh:mi:ss.mmm or ISO : yyyy-mm-ddThh:mi:ss.mmm) that you would parse in PHP code in order to convert them back to timestamps. This would also ensure database agnosticism...
  30. K

    Need to write a messaging\alert app which language should I use\learn C# or VB.Net?

    Gah ! Delphi's not so bad (in fact, the creator of Pascal is one of the main creators of C# IIRC). You can even code with brackets instead of begin..end ...
  31. K

    Need to write a messaging\alert app which language should I use\learn C# or VB.Net?

    I do think C# is a better language to learn (mostly because of the C/C++ resemblance). But obviously the more known languages the better ... I think VB.NET improved leaps and bonds with VS2008 and VS2010, but I remember VB.NET in VS2003 (.NET 1.1) and it was not pretty. VB was so much more...
  32. K

    Why would you not want to document your source code?

    Sure, but I still think one would have to include some reference/link to a description of the said algorithm (or better yet, include it in the function header comment, and comment again tricky areas in the code, such as mathematical assumptions/proofs where needed). If there is a unexpected...
  33. K

    Microsoft visual studios... Where do you get it?

    If you do not qualify for those, you can always use the Express version of VS2010 ... Edit : Nm, can't read (already addressed by OP) ...
  34. K

    Need to write a messaging\alert app which language should I use\learn C# or VB.Net?

    Did not know that. Yup, that's what I referred as auto-casing (and I think identifier casing corrections were performed since VB6, but I'm not sure - I did not really code in VB since that time, so if I remember it, it must have been in VB5 or VB6). Though I can't remember if auto-casing...
  35. K

    Why would you not want to document your source code?

    Back to topic, I probably am one of those that would comment "too much" (some code analyser app once told me ther was up to 40% of comment lines in my code) ... Some snippets of my code might thus be a good argument for NOT commenting your code ;) ... NOTE : In my defence, I...
  36. K

    Need to write a messaging\alert app which language should I use\learn C# or VB.Net?

    VS2010 (and VS2008 before that) pops up an list of classes (along with keywords and existing variables) when typing the first char of an instruction (the first word of the instruction is likely to be a keyword or a variable declaration). And like previously said, intellisense is just as good in...
  37. K

    "PhysX hobbled on CPU by x87 code"

    Now I kinda understand. We have the same problem with incoherent rays (successive bounces keep splitting packets). Some clever implementations solve this by resorting rays into groups when packets don't contain enough rays (or by casting all rays of a particular level, then sort bounces, then...
  38. K

    "PhysX hobbled on CPU by x87 code"

    Based on Scali's tests on Bullet, it seems physics are not so much computation heavy, but rather bandwidth constrained or something. There is no way a massively parallel computation heavy algorithm cannot benefit from good SSE implementation if there is not another bottleneck somewhere (memory...
  39. K

    "PhysX hobbled on CPU by x87 code"

    @Scali : I think we agree, then : SSE optimisation is possible and within their means (though not trivial nor cheap), but would not necessarily bring any major gain to the table (I still think they could squeeze some 1.5x if it scales even half as good as ray tracing with SSE), hence it is...
  40. K

    "PhysX hobbled on CPU by x87 code"

    I am inclined to believe nVidia when they state they did some research and found non-SSE code would be faster than SSE code (I find it hard to swallow, given how parallel physics computations are *edit: said to be*, but I certainly don't have their expertise on the matter). However, I don't...
sale-70-410-exam    | Exam-200-125-pdf    | we-sale-70-410-exam    | hot-sale-70-410-exam    | Latest-exam-700-603-Dumps    | Dumps-98-363-exams-date    | Certs-200-125-date    | Dumps-300-075-exams-date    | hot-sale-book-C8010-726-book    | Hot-Sale-200-310-Exam    | Exam-Description-200-310-dumps?    | hot-sale-book-200-125-book    | Latest-Updated-300-209-Exam    | Dumps-210-260-exams-date    | Download-200-125-Exam-PDF    | Exam-Description-300-101-dumps    | Certs-300-101-date    | Hot-Sale-300-075-Exam    | Latest-exam-200-125-Dumps    | Exam-Description-200-125-dumps    | Latest-Updated-300-075-Exam    | hot-sale-book-210-260-book    | Dumps-200-901-exams-date    | Certs-200-901-date    | Latest-exam-1Z0-062-Dumps    | Hot-Sale-1Z0-062-Exam    | Certs-CSSLP-date    | 100%-Pass-70-383-Exams    | Latest-JN0-360-real-exam-questions    | 100%-Pass-4A0-100-Real-Exam-Questions    | Dumps-300-135-exams-date    | Passed-200-105-Tech-Exams    | Latest-Updated-200-310-Exam    | Download-300-070-Exam-PDF    | Hot-Sale-JN0-360-Exam    | 100%-Pass-JN0-360-Exams    | 100%-Pass-JN0-360-Real-Exam-Questions    | Dumps-JN0-360-exams-date    | Exam-Description-1Z0-876-dumps    | Latest-exam-1Z0-876-Dumps    | Dumps-HPE0-Y53-exams-date    | 2017-Latest-HPE0-Y53-Exam    | 100%-Pass-HPE0-Y53-Real-Exam-Questions    | Pass-4A0-100-Exam    | Latest-4A0-100-Questions    | Dumps-98-365-exams-date    | 2017-Latest-98-365-Exam    | 100%-Pass-VCS-254-Exams    | 2017-Latest-VCS-273-Exam    | Dumps-200-355-exams-date    | 2017-Latest-300-320-Exam    | Pass-300-101-Exam    | 100%-Pass-300-115-Exams    |
http://www.portvapes.co.uk/    | http://www.portvapes.co.uk/    |