- Strength to Increase Rep
- +15
- Strength to Decrease Rep
- -3
- Upvotes Received
- 1K
- Posts with Upvotes
- 1K
- Upvoting Members
- 519
- Downvotes Received
- 138
- Posts with Downvotes
- 95
- Downvoting Members
- 74
Currently I am a self-employed IT consultant looking for a new contract. I'm a software architect and engineer w/ 30 years professional experience. I have been a member of the IEEE for 20 years and am a director of a major IEEE consultant's network.My…
- Interests
- Music - I play mandolin in a bluegrass band. I like hiking, backpacking, camping / tenting.Solving intractable…
- PC Specs
- Workstation: 8-core 3GHz 64-bit Intel w/ nVidia graphics and dual HD displays, running Scientific Linux…
Re: I admire someone who is planning ahead, but the point of school (you are in your 1st year) is to explore the options, and not lock yourself into a path that may not be what you want later in your studies. IE, take this opportunity to explore! When you find … | |
Re: Want a LInux laptop? Go to www.zareason.com - no Windows from them! | |
Re: I'm drinking a nice glass of Jameson's Irish Whiskey (triple distilled). Going to bed soon... :-) | |
Re: Most web traffic now is encrypted with SSL. It's nice that Wireshark can determine the decryption certificate to use from the stream, which is why it can turn it into plain text (unmask it). That is also how your browser knows what to do to decode it into a real … | |
Re: A vpn connection basically makes your system a peer in the network you have connected to. You will be using its DNS servers, LDAP (Active Directory) servers, etc. Even your IP address will change. All network traffic, authentications, etc. will go through the office network. You need the appropriate VPN … | |
Re: Nobody has mentioned ClamWIN/ClamAV - open source (free) AV for both Windows and Linux. I have found it generally effective on both systems, and the price is right! For Windows, MS Security Essentials is a reasonable choice, but it only works for MS systems. | |
Re: Write the solution in pseudo code first - the exact steps and processes you need to follow to get the correct answer, and then write the code to reflect that. DO NOT start with code! People keep asking me why I spend so much time on analysis and design (and … | |
Re: Assuming the host it is trying to connect to is external to the local network, or is in another subnet, then either the internet proxy or the router (depending upon situation) will need to be reconfigured. You need to have your hosting provider deal with this. | |
Re: What Red Goose said. This bit of code: int ones_digit = num%10; int tens_digit = num/10; Needs to be AFTER you get "num" from cin. You may have other problems, but that was as far as I looked. Also, you may want to verify that it is a number and … | |
Re: "I need help with this school project" doesn't help a lot. No explanation. No showing of work done at this point. Sorry, but my mind reading ability just fizzled out... | |
Re: There are more choices for Linux. Besides Apache, there is Nginx, and other web servers. Many of those also have Windows versions, but not so much because of the "locked down" nature of Windows. | |
Re: Usually VPS in the computing world stands for Virtual Private Server. So, what is the intent of your comment "leave them"? | |
Re: IOCTL is short for IO Control. It is a means to send messages and commands to the system kernel. If you want to add messages to a particular IOCTL then you will have to modify the kernel or kernel module sources and rebuild and reinstall it. | |
Re: Basically, you cannot sort an unsorted list without modifying the list, unless you make a sorted copy of it without modifying the original. So, I think your original question is in question... | |
Re: $200 USD / hour - that's what I charge to write embedded software programs... Also, I don't do your home (or other) work for you unless you make some effort to do it yourself first. Then, I may help you figure out where you have run off of the tracks. … | |
Re: Have you done a complete shutdown and then recharged the battery before you tried to boot it up? | |
Re: This is a simple program, and converting it to another programming language should not be a major effort. I think it is time you RTFM regarding Python programming documentation... Python programming is a skill in demand these days, so it will do you well to learn it. | |
Re: You shouldn't need it for ffmpeg. Try to transcode your videos into some more compressed stream, such as mpeg4, mkv, etc. It has a zillion options, and learning to use it effectively will take some time, but basic stuff is quite simple. BTW, the avi format is just a wrapper … | |
Re: You can use the open source ffmpeg tool to convert any video stream to just about any other. In this case, if she wants it on her iPhone, then convert it to a .mov format, or mp4. | |
Re: I also use ffmpeg for this stuff. I find that this works well for most all video formats: ffmpeg -i "input file" -target ntsc-dvd -q 0 -async 20 "output file name". This will create an mpg file. The -async 20 will sync the audio every 20 ms which works well … | |
Re: If your system is running Linux, then you can use the Alsa and pulseaudio sound libraries. Windows has its own stuff to use. These may be C libraries, but you can use them in C++. That said, if you want to do low-level sound programming to a sound card and … | |
Re: The only means to assure that your old data is not recoverable on discarded gear is to remove the hard drives, mount them as an external drive on another computer, and wipe the disc with an appropriate shredder software. Alternatively, if the system still boots and has a bootable usb/cd/dvd … | |
Re: You can also do this with the bash shell and ssh from Cygwin on Windows. I used to use those tools extensively for management of Linux servers as well as software development for Linux on Windows. | |
Re: The keyboard controller on the motherboard is continuously scanning the keyboard for keys that have been pressed. When a key is pressed, basically the controller detects that the key at position x (row) y (column) has been pressed, and that is decoded into the appropriate key by software. Since the … | |
Re: Also, FWIW, the dual interface in OracleSQL is basically the internal structural tables where stuff like date/time settings (and other stuff) are stored. If you are talking about MS SQLServer, that is basically Sybase massively altered by Microsoft. You would need to read their documentation to determine how to do … | |
Re: Learn arrays in C. Unless you are talking about std::array, they are the same. This stuff is covered in just about every C and C++ text book known to humankind. | |
Re: Actually, you can run OSX in a VirtualBox VM on Linux. Not sure about Windows. How well that would work I'm not sure as I haven't tried it, but VBox does have an Apple OSX startup option. You can at least try it. | |
Re: The update may have altered device settings. Check there to see if the mouse is detected, but not enabled. | |
Re: Initialize even and odd to 0 when you declare them. Don't reset them inside of your loop. | |
Re: I love it when the clueless try to reinvent the wheel, using straight elements (no curves). My wife, a particle physicist gets equally p.o'd when I try to explain the fundamentals of mesons, even though I have at least 1/2 a clue... So good luck, and I'll send your regards … |