Search results

  1. calebb

    Posting issues Last day or Two?

    I noticed an occasional issue with Firefox 94.0.1. I don't have an adblocker enabled for this site, and my only plugin is my password manager. I grabbed some debug logs; In this case I noticed that the ajax request for a post like appeared to use an http:// endpoint instead of https:// (in...
  2. calebb

    Your CPU progression

    I've kept a few of my old CPUs: C64 & Amiga 500 Intel 8086 (4.77MHz?) Intel 286 12MHz 386-DX16 (I coulda swore I had an SX without the math co-processor...) Cyrix 486 clone ($200 special from compgeeks) AMD 5x86 Pentium clone Seemed to have misplaced my 2x Celeron 400's from my old BP6 A couple...
  3. calebb

    Building shelves

    If you add a dab of PL Premium (or other polyurethane construction adhesive) to each joint, the connections will be stronger than the wood itself.
  4. calebb

    RTX 3070 Troubleshooting

    I received the replacement card today - so far so good! EVGA has great RMA service, IMO. 8 days from identifying a likely defective card to receiving a replacement card. Hopefully this one survives the night... :)
  5. calebb

    RTX 3070 Troubleshooting

    Good suggestion, J Macker but I don't currently have a compatible desktop available for testing... EVGA support is great - I opened a ticket last night, and they already helped set up an RMA this afternoon, with free shipping since the issue occurred within 30 days of purchase. I was just...
  6. calebb

    RTX 3070 Troubleshooting

    I think I've already tried most of the standard steps & I just opened a ticket with EVGA, but I figured I'd see if any of you gurus have any ideas. Last week, my turn came up in the EVGA queue for an RTX 3070 XC3! I installed it in my system last night, and it worked great! I spent ~90 minutes...
  7. calebb

    Original Adlib ISA 8bit 1990 Revision Sound Card Genuine Working

    Examining the quality of the solder probably isn't the most conclusive way to age a component, but I thought comparing with lead-free solder & 30-year-old lead solder might be interesting. (seems like it could be original to me)
  8. calebb

    hmmm..

    hmmm..
  9. calebb

    Are Used Racks in Higher Demand These Days?

    About a year ago, I downsized one of our Seattle colo installations and had to dispose of 4x 45u racks (~5 years old). I had an ad on craigslist for a couple weeks ($20 each, to weed out flakey buyers). I even emailed all the local PC recyclers, offered to deliver it, etc. Nobody wanted them -...
  10. calebb

    Java Tools and Services

    IntelliJ is one of the most popular Java IDEs. Some devs are probably still using Eclipse as well. Check out the docs for both, search for some reviews, install the trials, and see which one meets your needs. Tomcat is one of the most popular Java web app servers; Intellij allows easy...
  11. calebb

    Software Development & On-Call Rotation

    We don't have dedicated administrators in the Steam team; instead there are currently ~25 devs, and we rotate carrying the pager for a week at a time. (so, the inverse of your rotation interval :p). Pager holder responsibilities for the week includes integrating code changes from the previous...
  12. calebb

    Most Advanced SQL book

    Your value to many businesses is limited by your decisions about what aspects of (data) engineering you're willing to invest in. You've never used left or right outer joins, so I have no confidence that your understanding of the IO characteristics of either is accurate. Without having used...
  13. calebb

    Most Advanced SQL book

    What's an outer join? Provide a few use cases. What are the IO subsystem performance characteristics of this type of join? For your self-test, don't use google. Since this is a forum, there's no need to post the answer since good definitions can be found trivially with 5 seconds of...
  14. calebb

    What kind of project would anyone use Python/Django for?

    http://www.redditgifts.com/ is a django site. I can't tell you if Python was the best language for this site.
  15. calebb

    Question about Supermicro barebones servers

    Slightly off-topic, but... wut? How does consolidating debt result in a debt free Red Squirrel? (PM me a link if you want to take this to soapbox or genmay and explain it to me). And, to keep this on-topic: 850 GHz (1.7 THz logical) and ~640lbs. Or ~1.3 GHz per pound, for those of...
  16. calebb

    SQL expert?

    Why do you want to select distinct records? Do you want to sample data or get a complete set of unique records based on a certain set of keys? You can: SELECT * FROM YourTable ORDER BY NEWID(); which will assign a new random GUID to all 4.5M records, and sort by this new random key. You...
  17. calebb

    mysql_secure_installation fails ... trying to set root password!

    Solutions for: MySQL 5.0, MySQL 5.1, and MySQL 5.5
  18. calebb

    What could make this happen?

    Learn the specification you're using. e.g., http://www.w3.org/TR/tr-date-stds and http://www.w3.org/standards/webdesign/ Organize your source to minimize bugs Use an IDE or text editor to assist with above Try a validator if you get stuck. They certainly aren't perfect or comprehensive, but can...
  19. calebb

    Most discussion about web development, scripts, and Java?

    Is the ambiguity in the follow-up question, or your original statement?
  20. calebb

    SQL Explicit permissions

    Some day, when you're an IT manager and making fat stacks, do you think that a general understanding of "explicit permissions" will be useful? What will you do when "your" DBA/programmer/Exchange Admin/SAN Engineer is telling you that he/she intends to use a shared user account? And this...
  21. calebb

    Programming Help

    Or worse, an alternate account of a co-worker.
  22. calebb

    Steam down

    Maintenance ran a little longer than expected this morning. I blame the buffer pool.
  23. calebb

    SQL Replication Error

    Transactional replication? Try running SQL Server Profiler on the subscriber (use a text filter for '124.' or just capture all transactions and search for this value afterwards - then attempt to resume replication). This might give you an idea of which table to look at. If replication is...
  24. calebb

    Build websites, or have reccomendations? $$

    Would you offer a discount if the OP agrees to a retainer agreement? :cool:
  25. calebb

    Feasible to create a table per entry? (in order to emulate a 2D table)

    As everyone keeps mentioning, more specific details will be helpful. Do the data points change over time? How often is the same distance between points calculated? Storing the data in a caching server would result in faster reads than storing it in SQL server, but (since it's a caching...
  26. calebb

    Corsair "Barebones" Christmas Giveaway!

    Reliable modular PSUs with a convenient carrying case for all the extra cables.
  27. calebb

    Feasible to create a table per entry? (in order to emulate a 2D table)

    What rdbms? What sorta query volume, number of users, expected rate of feature growth, etc? You could store the points, create spatial indexes and calculate the distance from your query: http://technet.microsoft.com/en-us/library/bb964712.aspx...
  28. calebb

    Job Market

    Let's start with your code. Does this code do what it is supposed to? What are your test cases? There are bugs... Once those are fixed, how can you make this code snippet do less work / use less CPU? (minor revisions, not a rewrite)
  29. calebb

    Skyrim retail vs. steam

    Nice! Which hats/items?
  30. calebb

    PHP In this day and age

    What? 5.4 Alpha3 was recently released. PHP 6 has been postponed (probably permanently), largely due to perf/memory issues with their approach to adding Unicode support everywhere (engine, extensions, api). That doesn't mean there won't be a new PHP 6 (or PHP 7) in the future. Here's the...
  31. calebb

    PC Battlefield 3 Lacks Key FPS Feature: No Ingame Server Browser.. Yes I'm serious.

    That's incorrect; The browser available from the Steam overlay works with most DirectX and OpenGL application launched from Steam (including non-Steamworks titles and even non-Steam titles; Games -> "Add a Non-Steam Game to My Library") It's useful for consulting game wiki's and checking...
  32. calebb

    Dota 2 Trailer!!!!

    1080p: steam://run/81026 (Follow the download link on this page if you don't have Steam installed)
  33. calebb

    steam pwns other game companies yet again

    Good news, madFive! Take out the space between re and f; The forum software thinks this is an affiliate link. It's just a FAQ: https://support.steampowered.com/kb_article.php?re f=6748-ETSG-5417
  34. calebb

    Team Fortress 2 Is Now Free To Play

    http://teamfortress.com/freetoplay/faq.php
  35. calebb

    Meet The Medic

    http://teamfortress.com/freetoplay/faq.php
  36. calebb

    Steam issue

    Sounds like it's working now, right?
  37. calebb

    Steam issue

    Steam accounts are not disabled due to inactivity.
  38. calebb

    SQL database question - Primary keying with an 'id' column

    I didn't say it's bad; However, after answering your original question, I did provide a concrete example where a meaningful ID is a much better choice than an autoincrement id. Imagine returning 1,000,000 records from the hypothetical Employee table with an autoincrement id; With a simple...
Back
Top