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: I’m trying to set up remote access using DDNS (No-IP) on my home net Hardware and Software Networking by trcooke You're a little thin on details about "my network" but for the purposes of this discussion I'm going to assume you are talking about a typical home network comprising of a Router and a bunch of devices connected to it. Let's think about the network route required to get from one computer on your network to another, and this is what I … Re: How to enable gpedit on Windows 10 & 11 Hardware and Software Microsoft Windows by AIO_803 Enabling **gpedit.msc** on Windows 10 or 11 (especially Home editions) is useful for gaining more control over system settings. While it’s not officially included in Home versions, there are workarounds—though users should proceed carefully to avoid system issues. 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. McCharts - ArkTS Programming Software Development by 杨_659 ## **Introduction** > The McCharts component library is developed based on Hongmeng ArkTS syntax and supports API 9 and above. The chart component has been open sourced. Everyone can participate, whether they are new or experienced, to learn from each other, develop more component libraries, and enrich the ArkTS ecosystem. > > You can… Re: Cannot run exe from asp.net Programming Web Development by lennyli > Why your approach isn’t working > What you're trying to do is mostly blocked by modern security rules — for good reasons. Here's the breakdown: > > Running a .exe on the server > You can technically make the server launch an .exe file like Notepad, but: > > It will run in the background on the server, not visibly on… Re: Show computer name on a label Programming Software Development by Salem > I tried that but I get this error Prove it - post some code. You won't believe how many times people claim "I've done X" only to find out many posts later that they haven't done X at all, or they managed to fumble it and do "Y" instead. Re: Cannot run exe from asp.net Programming Web Development by Salem https://xyproblem.info/ * User wants to do X. Sometime later... > My boss just asked me to create a prototype as proof of concept. There is no specific language/tool I must use * User asks for help with Y. Initially asked... > Have a webpage with a button, when pressed, it will launch a webpage that runs a server side exe (eg, … Re: Which social sites is best for SEO? Digital Media Digital Marketing by asadalig From my experience, the best social sites for SEO are YouTube, LinkedIn, Pinterest, and Twitter (X). They help your content get indexed faster, build backlinks, and drive real traffic. Just stay active, share valuable stuff, and engage — it really pays off over time! Re: *.X files Programming Software Development by ~s.o.s~ .X files are basically Microsoft format of 3d model files which are used in the game development industry for storing the 3D model information. And as far as manipultaing them is concerned, you can use a 3d Modeling tool like Blender to make your own .X files and change existing ones. Hope it helped, bye. Re: .x ?! Programming Software Development by Cain [QUOTE=blackberry]hi my friends who can tell me about *.x ? :o i mean .x extension is stand for what kind of files? :o cheers.[/QUOTE] man this is an old thread I know of none. I have seen it used though. But only in describing version numbers. version 8.1.x ..meaning all 8.1.0-8.1.99 versions. otherwise i would think this is … .x ?! Programming Software Development by blackberry hi my friends who can tell me about *.x ? :o i mean .x extension is stand for what kind of files? :o cheers. Re: X messed up (gnome) after <unstable> upgrades. Hardware and Software Linux and Unix by prushik My Xorg.0.log: [CODE] X.Org X Server 1.5.2 Release Date: 10 October 2008 X Protocol Version 11, Revision 0 Build Operating System: Linux 2.6.24-19-server i686 Ubuntu Current Operating System: Linux prushik-laptop 2.6.28 #2 SMP Mon Mar 2 22:27:50 EST 2009 i686 Build Date: 24 October 2008 08:00:16AM xorg-server 2:1.5.2-2ubuntu3 (buildd@… x.contains(y) Programming Web Development by Troy III Since the Firefox [Bug 633133] of the [B]in[/B] operator on DOM Collections has ben finally fixed - We can now write a short fast and clean function of the method "Contains" for FirefoX to check if x.contains(y). And vice- versa. What we will need is: a prototype and we'll chose to use the: [CODE]var pro = window.HTMLElement.… Re: x.contains(y) Programming Web Development by Troy III Ups! :p I've posted the one I've written [later] to be compatible with FX 633133 bug. Here is the original idea using (one of the most powerful tinny features of JavaScript) - the IN Operator: [CODE]pro.contains= function(x){return x.id in this.all}[/CODE] Now that's the only reason I mention the 'in' op., in my 'overture' to this thread ...… Re: x-y plane Programming Software Development by stablamate where do you use this x,y coordinate? Is it for vector2D class or anyelse? if you write more detail about your problem or what do you want to do, I may help you? If it is coordinate system for vector, you can implement it two point as, double x = 0.0; double y = 0.0; And you do somoething else like dot product, reflect... Then if … Re: x-y plane Programming Software Development by stablamate I guess you have an idea about translation, vectors, coordinate system. 4 months ago, I wrote a BaseGameMachine class to give some movements vehicles. It is nor important what is it. But when I coded it, there is some problem about rotation. I done rotation the vehicle with accelration, velocity, side and head but I saw some people use matrix, … x^x Programming Software Development by pjh-10 im terrible at c++, absolute beginner, i can start and end programme writing, just the functions im awful at, for this one below, what is the ,to say, middle part of the programme Using <cmath> function pow(x,x), find x^x in small steps of 0.5 starting at x = -1 to x =+3. Re: x-y plane Programming Software Development by iamthwee [QUOTE=sub-zero;258135]hi every one " A point in the x-y plane is represented by its x-coordinate and y-coordinate.Design the class Point that can store and process a point in the x-y plane.You should then perform operation on a point, such as [B][U][COLOR="Red"]shoing the point[/COLOR][/U][/B], setting the coordinates of the … Re: x++ and ++x Programming Software Development by Ezzaral With x++, the value of x is evaluated before the increment. With ++x, it is evaluated after. So[code=java] int x=0; System.out.println(x++); // prints 0, x now = 1 System.out.println(++x); // prints 2, x now = 2[/code] Re: x power n Programming Computer Science by neilcoffey For the [I]general[/I] case, essentially, you break the exponent down into a series of "multiply by x" and "square then multiply by x" operations. If you imagine the exponent in binary (without trailing zeroes), then for each bit position that there is (ignoring the highest bit), you need to square the number, and in addition if… x-y plane Programming Software Development by sub-zero hi every one " A point in the x-y plane is represented by its x-coordinate and y-coordinate.Design the class Point that can store and process a point in the x-y plane.You should then perform operation on a point, such as [B][U][COLOR="Red"]shoing the point[/COLOR][/U][/B], setting the coordinates of the point printing the … X messed up (gnome) after <unstable> upgrades. Hardware and Software Linux and Unix by prushik I recently decided to take a chance and install some unstable upgrades (I love unstable things). So I upgraded many of my applications via apt-get. One of the big things I upgraded was libc6. I think that my be the issue, not sure. After the upgrades, I had many many problems. I was able to fix nearly all of them in different ways, many by … What is -x ? Programming Software Development by merse -x means (0-x) or means (-1*x) because I want to overload operators, which one is necessary to overload if i would like to make -x understanable for the compiler? I have a user defined type: real and I have operator overloading: real operator+(real x1, real x2); I also have constructor real(double) and casting defined double() in my real… x axis on a simple line graph in matplotlib Programming Software Development by rasizzle Hey Guys, I'm trying to do a basic line graph here, but I can't seem to figure out how to adjust my x axis. [CODE]from pylab import * plot ( range(0,10),[9,4,5,2,3,5,7,12,2,3],'.-',label='sample1' ) plot ( range(0,10),[12,5,33,2,4,5,3,3,22,10],'o-',label='sample2' ) xlabel('x axis') ylabel('y axis') title('my sample graphs') legend… Re: x axis on a simple line graph in matplotlib Programming Software Development by rasizzle [CODE]Traceback (most recent call last): File "C:\PortablePython_1.1_py2.6.1\App\April_2010\graphing lines.py", line 3, in <module> plot ( range(0,11),[9,4,5,2,3,5,7,12,2,3],'.-',label='sample1' ) File "C:\PortablePython_1.1_py2.6.1\App\Lib\site-packages\matplotlib\pyplot.py", line 2141, in plot ret = ax.plot(*… Re: ++++x - undefined behavior? Programming Software Development by vijayan121 > I think it must be since it all occurs between sequence points. Sequence point rules were there prior to C++11. Now, those rules have been superceded by sequenced-before rules. The question: does `i++ + ++i;` engender undefined behaviour is of relevance if and only if `i` is of a scalar type. If `i` is of a user-defined type, `++i` and `… Re: x-y plane Programming Software Development by iamthwee [QUOTE=sub-zero;258135]I didn't study anything about x-y plane or drawing by java !! :rolleyes: :sad:[/QUOTE] So I guess now is a good time to then. Ha ha. Re: x-y plane Programming Software Development by iamthwee >Is it important that to implement rotation of vehicle, we must use matrix transformation? Or is it only consist of easy to calculate. What does it provide? Regardless of whether you're doing, 2d or 3d operations you should be using matrices. It just makes the math so much easier. Now, if you're asking me to explain all that to you, no … x:forEach org/saxpath/SAXPathException Programming Web Development by Jrock Hey everyone. Brand new to the forums. I have been looking all over and could not find much help. I have found one instance of the problem but it always occurs in JBoss and I am running Tomcat. I am pretty new to JSP, XML, and servlets so bare with me if I seem like an idiot -_- I am trying to parse an XML document and display the …