Is Microsoft Solutions Partner Badge Really Worth It? Programming Software Development by Mason_8 I've been reading about the Microsoft Solutions Partner program and wanted to ask the community is it actually worth … Re: Is Microsoft Solutions Partner Badge Really Worth It? Programming Software Development by rproffitt Wrong person to ask. But it was 2 decades ago and Microsoft's support was nothing better than "did you turn it off and on again?" This on a ERP deployment and frankly a failure in my view because it increased the amount of time we spent on the project. Not to mention downtime as we waited for fixes and server responses times in the … Re: Is Microsoft Solutions Partner Badge Really Worth It? Programming Software Development by Reverend Jim I have to say that I have had both terrible and outstanding results from MS support techs. It all depends on who you get. What the Best Employee Wellbeing Programs Do Differentl Community Center by Happiness_1 … foundation, it becomes fragile. A perk, not a principle. A program, not a practice. Depth begins when organizations stop asking, “What… that feels misaligned, unseen, or unsupported. The best employee wellbeing program address this not by adding more noise—but by quieting… Re: Error LNK1104 when debugging Programming Software Development by wwwalker … strncpy, you need these to be included at top of program: #include <stdio.h> #include <string.h>… Re: Crosshair has a vertical and horizontal line to view the value of the axis. Programming Software Development by Dani … time. If you ask it to write an entire mini-program that does X, it inevitably gets quite a few bits… Re: What the Best Employee Wellbeing Programs Do Differentl Community Center by rproffitt In the USA wellbeing is now taken as a sign of weakness. The current government is all about striking down empathy, public service and along with it wellbeing. I take it you are not in the USA. Re: What the Best Employee Wellbeing Programs Do Differentl Community Center by Dani The government does not control every company’s attempt at caring for its employees. Also, why twist everything anyone has to say into a political statement? Re: What the Best Employee Wellbeing Programs Do Differentl Community Center by Reverend Jim You can set corporate policy but corporations are, after all, just people. I worked at one company for 29 years and overall the company had a top rating for employee satisfaction. However, my first boss unsuccessfully tried to have my entire group (six programmers) fired so that he could quit and set up his own consulting company to take over the … Re: How do I make my code jump back to a previous line? Programming by Dani Organizing code into functions is always important for readability and also to be able to reuse parts of your code as your app gets bigger. Thank you for posting your updated code to share with others :) Re: Java Coin Flip Program Programming Software Development by jassonadder …, input, and class methods in Python. Here’s a sample program that does exactly what you're asking. It defines a…;, self.heads) print("Total Tails:", self.tails) # Main program try: flips = int(input("How many times would you… Re: Java Coin Flip Program Programming Software Development by Dani Better late than never! Thanks for your post. It looks like it's really helped a few people already. Re: Java Coin Flip Program Programming Software Development by Salem > It looks like it's really helped a few people already. Yeah, 4 new members with consecutive user ID's, smelling like sock-puppet accounts. Re: Java Coin Flip Program Programming Software Development by Dani > Yeah, 4 new members with consecutive user ID's, smelling like sock-puppet accounts. I realized that after I posted. I’m on my phone on the sofa so it wasn’t as easy to tell. Although I still can’t see the motivation. Edit: Nevermind. Perhaps they were trying to improve their member reputation/quality score?? (Won’t work because you need… Re: Justice Department Offers Grants Against Internet Predators Digital Media Digital Marketing by JackRyan248 … (OJJDP), the Department of Justice said. The ICAC program supports a national network of 59 coordinated task forces, …that are currently receiving funds under the ICAC Task Force Program, and they needed to register by March 16. >…; > The program includes all forms of sexual exploitation of children (SEC) and… How do I make my code jump back to a previous line? Programming by trueriver …;It looks like it's your first time using this program!") time.sleep(1.5) User = input("Please create… Re: How do I make my code jump back to a previous line? Programming by trueriver …;It looks like it's your first time using this program!") time.sleep(1.5) User = input("Please create… Re: Cannot run exe from asp.net Programming Web Development by john_111 … said, by explaining why. If a webpage could run a program installed on another computer, the entire world wide web would… the web page can let you download and install a program. But not take over your computer. Re: Problem with MS Office shortcut bar Hardware and Software Microsoft Windows by themadrastiffin The shortcut bar in MS Office may not appear, may not open or may run slowly if you restart, repair or reinstall the program. Re: Cannot run exe from asp.net Programming Web Development by lennyli …, but i can at the same time, run a local program similar or same as the software on the remote notebook… Re: Problem with MS Office shortcut bar Hardware and Software Microsoft Windows by asadalikhan … on the shortcut bar are likely opening with the wrong program (like a printer handler). Here’s a quick fix: 1… Re: Cannot run exe from asp.net Programming Web Development by lennyli … WEB sockets. Sure, I understand, but for my above new program it has nothing to do with web. It is just… Re: Coin Flip (Python Newbie) Programming Software Development by jassonadder Hey! Great job getting started with Python—your logic is almost there, just a couple of small fixes needed. The main issue is that you're using the variable timesflipped in your while loop, but it was never initialized. Because of that, the loop never runs properly, and your counters don't change. Here's a corrected version of your code:… Re: Coin Flip (Python Newbie) Programming Software Development by Dani > Presumably bumping every "coinflip" post to spam their URL Nothing wrong with that!! I'll take a trillion helpful posts if all someone wants in exchange is a free signature link back to their website (that only shows up for logged in members, so no SEO incentive). Re: C++ College Prank Programming Software Development by cirol Pranks can be fun, but fake viruses might cause real worry and problems. It’s best to use your skills in ways that don’t upset or confuse others. Re: Coin Flip (Python Newbie) Programming Software Development by woooee while timesflipped < 100: timesflipped += 1 Use a for loop instead. if coin_flips == 0: And no need to add the == 0. Just *if coin_flips* (i.e. not zero) is enough Re: Coin Flip (Python Newbie) Programming Software Development by Reverend Jim When you want to do a loop a given number of times (e.g. 100) but the loop counter is not used you can do for _ in range(100): # rest of code here Re: Need Coding Help With A Project Programming Software Development by Enzo_3 I was working on a similar assignment where I had to compute the average of numbers from a text file using higher-order functions like map() and reduce(). I was really stuck on how to incorporate them meaningfully, but I finally figured it out. Here's how I approached it using Python: from functools import reduce with open('… Re: Need Coding Help With A Project Programming Software Development by Reverend Jim I don't know why you would use `reduce` and `lambda` when you could just do sum(numbers) And the directive >You should make use of two higher-order functions (i.e., map and reduce, or something else) to simplify the design. is self-contradictory as using `map` and `reduce` instead of `sum` does not simplify the design. It … Re: Need Coding Help With A Project Programming Software Development by Reverend Jim >Why put them down? Please explain to me how anything I said was a put down. If someone told me their methof of counting cows was "count the number of legs and divide by four", I would point out that it would be simpler just to count the number of cows. If I said "That's stupid, just count the cows", then that would be a …