Posts
 
Reputation
Joined
Last Seen
Ranked #34
Strength to Increase Rep
+15
Strength to Decrease Rep
-3
91% Quality Score
Upvotes Received
1K
Posts with Upvotes
1K
Upvoting Members
519
Downvotes Received
138
Posts with Downvotes
95
Downvoting Members
74
235 Commented Posts
~2.41M People Reached
About Me

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…
Favorite Tags
Member Avatar for happygeek
Member Avatar for Duki

I'm drinking a nice glass of Jameson's Irish Whiskey (triple distilled). Going to bed soon... :-)

Member Avatar for Dani
22
17K
Member Avatar for Chris.T

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 …

Member Avatar for agausmann
-1
4K
Member Avatar for Dani

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 …

Member Avatar for markanderson_1
2
925
Member Avatar for sylvia.roymccormick

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.

Member Avatar for Reverend Jim
0
642
Member Avatar for sarah_15

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 …

Member Avatar for JamesCherrill
0
3K
Member Avatar for joshl_1995

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.

Member Avatar for Dani
0
3K
Member Avatar for adoleh

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 …

Member Avatar for emsmary
0
16K
Member Avatar for Quinton_1

"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...

Member Avatar for jackpetersoons3
-2
784
Member Avatar for fashionandyou

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.

Member Avatar for AccuWeb Hosting
0
564
Member Avatar for Edsion Thomas

Usually VPS in the computing world stands for Virtual Private Server. So, what is the intent of your comment "leave them"?

Member Avatar for AccuWeb Hosting
-3
1K
Member Avatar for danibootstrap

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.

Member Avatar for Bazirao
0
1K
Member Avatar for alamu

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...

Member Avatar for 4rajgopal
0
1K
Member Avatar for rajii93

$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. …

Member Avatar for Dorian_3
1
373
Member Avatar for JasonHippy

Have you done a complete shutdown and then recharged the battery before you tried to boot it up?

Member Avatar for Stephen_46
0
1K
Member Avatar for Luka_1

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.

Member Avatar for Adina_2
0
72K
Member Avatar for Reverend Jim

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 …

Member Avatar for Reverend Jim
2
1K
Member Avatar for Nick_10

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.

Member Avatar for william0ffil512
-1
4K
Member Avatar for Reverend Jim

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 …

Member Avatar for gladisfogson
1
2K
Member Avatar for Demetrius

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 …

Member Avatar for k191376
0
15K
Member Avatar for happygeek

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 …

Member Avatar for Backgroundsun
2
2K
Member Avatar for OsaMasw

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.

Member Avatar for extr3mex
0
564
Member Avatar for pknoester

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 …

Member Avatar for mariah1902
0
2K
Member Avatar for Bhavini_2

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 …

Member Avatar for anand9796
0
297
Member Avatar for Ahmed_76

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.

Member Avatar for Purvi_1
-1
243
Member Avatar for harukichi

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.

Member Avatar for JamesCherrill
0
449
Member Avatar for arjun_8

The update may have altered device settings. Check there to see if the mouse is detected, but not enabled.

Member Avatar for Steve_52
0
454
Member Avatar for Joedanica

Initialize even and odd to 0 when you declare them. Don't reset them inside of your loop.

Member Avatar for Reverend Jim
0
287
Member Avatar for Thomas_21

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 …

Member Avatar for david_158
0
1K
Member Avatar for masterarts

You will need to contact candidate host sites directly to see if they support it, or if you can install it. Many today will use either virtual machines for their hosted customers, or containers such as Docker in order to give you a safe environment that will not be interfered …

Member Avatar for shlom
0
494