Search results

  1. batch file to alter txt files through multiple find and replace

    People are a lot more likely to help if you ask a specific question, or post a code clip where you're having a particular issue you need help with. Asking for people to do something for you may not get much response.
  2. Is LinkedIn the best place to find new tech jobs?

    AngelList (https://angel.co/) has a lot more than just start-up job postings, anymore. It's a pretty good resource if you're looking for software roles
  3. Best GPGPU framework

    I haven't use Vulkan, but the last time I used OpenCL, there was a crap-ton of boilerplate required to get it off the ground. Otherwise OpenCL is quite powerful and mostly straightforward. I'd use it again if I had the need.
  4. What can help me develop a "love" for programming?

    I do software development for a living, but if I'm not interested in the problem I'm solving, I find "programming" to be boring as shit. The problem-solving is the fun part. Find a problem you actually want to solve.
  5. Buying my work laptop from my employer

    Thanks all. I think I'm going to say I am willing to pay $400-500 for the laptop. I can also pitch the advantage of leaving my current development environment in place in case they want to contract out any hours to me in the future.
  6. Buying my work laptop from my employer

    My current employer (small company) purchased a 13" Macbook Pro (early 2015) a little over a year ago for me to use in my current role. I am now leaving the company, and my boss asked me to estimate the value of it if I wanted to keep it after I left. I'm interested in keeping the laptop, but...
  7. Help my math skills please be kind

    ~2500 cu in. Would give you an area ~ 50" x 50"
  8. Python syntax compile error

    you're missing a '+' after 'eip'
  9. What a website was built with ?

    You can install chrome extenstions for ng-inspector, React Developer Tools, Ember inspector, etc., to see details about site if it was built with one of those frameworks. Much more insightful than looking at the raw source.
  10. The Internet died today.......sigh

    Disagree completely. The SD/HD difference was huge. Who said that back then? I remember the first time I saw a 1080p movie, and I definitely did not say "Can you really tell the difference?" Looking at 4K, though, I question if a 4K screen under 55" makes any difference whatsoever for TV...
  11. Does your grade in school reflect your success in career/life?

    F- average in school, now I make up to $3750 per month working from the comfort of my own home with no schedule and no upper limit on what I can earn, just click to get started!
  12. How to store functions in database for this use-case?

    You could always add a generic polynomial formula, and allow users to specify the coefficients they would like to use in the formula to calculate a value. The same could be done for an exponential equation. This would provide a wide range of functionality without introducing the maintenance or...
  13. Anyone taken a unique vacation in the US?

    Sounds to me like the people you know just take sh**y vacations
  14. Are HTML tables considered bad in 2016?

    If you're actually displaying a table, and not just using a table for column layout, tables are fine. If you're not concerned with your table being resizable and/or responsive to users of smaller screens (tablet/mobile) tables are fine.
  15. git: automatically add/remove/rename files?

    Great tutorial, this is what I send to anyone new to git
  16. Need a program for data entry

    I think your use case might be a good application of Microsoft Access. I don't have much personal experience using it myself, but I know people that use Access for cataloging and managing inventories
  17. C++ "proper" include file structure

    I just dropped in to say this. One of the best lessons I've learned doing c++ development is that you should always try your best to avoid using `#include <blah>.h` in a header file. If at all possible, use forward declarations instead. including header files from other header files as a...
  18. Why is a year four seasons long?

    When you say "same plane as the sun", same plane compared to what? The plane of our orbit is not the same as the plane formed by the earth's equator, that is true. Relative to the plane of the equator, yes, the earth is 23.5* above the sun in December, and 23.5* below the sun in June...
  19. Gun shop was found negligent for selling a pistol to a man who shot 2 cops: $5M

    There's a pretty big difference between "liable" and "not immune" I think it's asinine to hold manufacturer's as liable just for manufacturing, but if they've actually done something illegal or negligent, having immunity is just as asinine
  20. The Strain - FX

    Are you suggesting he couldn't have missed with that sight picture? Have you ever fired a gun? That, and which gun range did he go to to zero that scope?
  21. Which headphones are you using?

    I have the Sennheiser HD555's. I've had them about 6 years, and they're great, but the pivot hinge on each side is about ready to go. I've actually been looking for a replacement. This thread will help. HD650's look sweet, but $450+ seems steep.
  22. Bigfoot IS real

    I've never understood the Bigfoot fanatics
  23. Is there a better way to do this re pattern?

    What is your ideal output? Do you just want to get rid of the "title:" pieces?
  24. Learning how to use SVN/Git, couple questions

    If you find git intimidating, try this interactive tutorial: http://pcottle.github.io/learnGitBranching/
  25. What do you guys do with JSON server side? In Java for example...

    I just started a new project and we're using Dropwizard with Jackson to handle the JSON REST endpoints. Works pretty slick.
  26. These Jokes Are For Intellectuals

    For #17, I thought "make me one with everything" was going to be the pun.
  27. Patriots TE Hernandez in big trouble

    You do realize it's more expensive to put someone to death than to keep them in prison for life, right? Court costs for death penalty cases are insane: http://www.deathpenaltyinfo.org/costs-death-penalty
  28. Time to move your Google Code projects

    I'm not, new Google-created projects have been hosted by GitHub for the last year or two.
  29. Interface in java

    Class interface? user interface? graphical user interface? You need to provide some hints as to your "situation". Most of us are not very good at 20 questions
  30. Basic concepts that seem to escape the grasp of most people

    People that drive in the left lane. People that drive like assholes and don't let people around them merge (or close the gap when you turn on your blinker). You're slowing the entire highway down.
  31. Regular expression help

    I was thinking something a little more automatic: string = 'param1: 1 param2: 1000 (1000/ 3000) param3: 1000 (50/ 30000) param4: 3826 param5: 0 param6: 1 param7: 0 param8: 2 param9: 0' pattern = re.compile('''(\w+):([\w\(\)\/ ]+(?=$| \w+:))''') field_dict = {} for match in...
  32. Regular expression help

    Use a regex to match each param:value pair, and then use groups to get the param and value: https://docs.python.org/2/library/re.html#re.MatchObject Try this regex: (\w+):([\w\(\)\/ ]+(?=$| \w+:)) It uses lookahead to avoid matching the next param. '(' start of group '\w+' one or more...
  33. The Official PS4 Thread

    I played through The Swapper, and I didn't notice anything wrong with the display. On a side note, it's one of the better game-of-the-month titles I've played on PS+
  34. Writing PNG files in C++

    pngpixel * pixel that isn't an expression, it's a declaration of a variable called 'pixel' of type 'pngpixel*'
  35. YAGT: OMG I love guns

    Picked this up over the weekend. Bought it without really knowing what it was. Turns out to be a Marlin 1897 (later known as the 39A), serial number indicates manufacturing in 1904. The only problem is that the barrel was replaced (probably a long time ago) with one from a Savage 6A. More...
  36. Regular Expression to NOT match list of characaters

    Adding a carat (^) at the beginning of a character class negates it (matches characters that aren't in the class) The regular expression you want is: [^!@#$%^&*()\/+-=`~{}|\[\]\\"'<>?]+ As tested using rubular.com The problem with all the special characters is different languages have...
  37. MS Employee work resume, Power Architecture inside Xbox One ? , and Kryptos , hmm

    Ever think that to an electrical engineer that has stuff related to BOM delivery and PCBs that "Power architecture" might be the architecture of the power delivery circuitry, and not Power&#8482; Architecture?
  38. Buy something 45% off, no warranty?

    What would it cost to send it in for repair if you had problems? If the answer is "less than $350", then you probably have a winner.
  39. Solar system contained in "Local Bubble"

    Video says 1 million degrees, not 10. That's still a lot, but an order of magnitude is a big difference. I would say the same thing as many others about the low density/pressure of the gas cloud in space. Pistol shrimp create a vacuum bubble that reaches ~5000 K. Just goes to show that...
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/    |