Can You Code?
You can all read, write and do arithmetic, but can you code? Should you code?
It would be interesting to see who can, who cares and what the impact is for physical security professionals.
Obviously coding competency ranges from 'hello world' to developing huge enterprise systems but to give some basic metric let's say someone who can code can handle something like this:
"Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”."
So can you code?
First, vote inside:

10/09/15 01:24pm
I keep meaning to learn. I've watched a some videos on Coursera and read a bunch of Wikipedia pages.
I thinking knowing how to code, at least at some basic level, is important for anyone in technology fields (well not PR people, I suppose...)
(1) Working in software development is not only intellectual demanding, it is financially rewarding. It also enables you to do more on your own (i.e. build things).
(2) Even if you never develop anything personally, knowing how development works and what it takes to develop different functions or features is very helpful for anyone in sales engineering or senior roles in sales and marketing.
I've seen lots of senior people whose cluelessness on development lead to bad business decisions, as they vastly undersestimate how hard certain things they want are and miss figuring out new features that are simple to implement but can provide significant competitive advantage.
This has certainly been a great help for me at IPVM. Rather than doing a bland/limited WordPress site, I developed the original site, the original News Spider and the original Camera Finder. Now I am essentially product manager, specifying features and it is extremely useful to have a good sense of what can be done, so we can more quickly release valuable but simple to implement features and figure out the best ways to approach harder ones. Speaking of which, check out all the new improvements in the Calculator.
That said, there are some limits in the benefits of coding, especially for integrators, given how limited APIs are for most physical security systems and how time consuming it can be to get started and get help. Certainly some things can be done but that tends to limit it to bigger projects but even for them if you can develop some software optimizing things for your clients it could be a big differentiator.
Please Define what Code?
Binary
Hexidecimal
Basic
Gwbasic
Fortran
Cobal
C
C++
Scripting, Gamming code ?
? so many types, so many options, so may differents ways to code
Well with this generation its mostly point and click programming and I used to have to program hex, machine,binary and other forms of code on a regular basis's.
Now code is point and click , drop and drag, or other options.
I still have to use programming with My URC's, and Vms's.
IE exacq s Lenix based systems .
But; thats right code's go back a long way with me. well seasoned veterans like us.
All my fire systems, security system's, access control systems have to be programmed, but with predefined options and formats to choose from.
Anyone from the industry who is a lead, or journeyman should be programming in this gen. or thier just another laborer
You cannot, not program
Excell spreadsheats use the programming to some extent , if your trying to see the impact results of show anything about the systems operations.
IMO knowing how to code beyond a basic level is immensely valuable. I can't count how many times I've written some "glue" to make 2 things talk, or to put up a basic web service.
It's also helpful to understand programming fundamentals so that you can better gauge how practical a given request is (or isn't).
I have some sort of IDE open almost constantly on my laptop, in fact I'm working on a couple of coding projects right now to prototype some customer feature requests.

I started teaching myself BASIC when I was maybe 10, but it took so long to get anything done I quit.
I took a course on Visual Basic in college (required, though the semester before I got there they taught C++ which I would've preferred) and got an A.
I have taught myself to varying degrees PHP and C++ and JavaScript but only to the level I needed them for, which wasn't much, and I've forgotten mostly all of it. I've lately had to learn some Groovy (which I hate) because I wanted my SmartThings system at home to do specific things that other apps weren't doing. I learned it enough to mostly make that work.
In general, though, coding is the most tedious thing I could do. I hate it.
I don't mind scripting things, and I like making things work together to automate tasks or events, but ask me to code from scratch and I hate it.
And I agree that most APIs are so weak there's not much need to custom code things in security. If you can figure out how to work CGI, REST commands, and send/receive serial over IP, you're probably going to cover most of what you need.
LOL also :). 10 also when i was teaching myself Basic ( on a Commodore) . But it went faster for me, i had 20 or 30 Commodore magazines and copied code from there !. In a few hours i could do whatever the magazine guy wanted to do, but it was sad after i've done it all :)

Shouldn't the vote have a forth option that says "Uhh? What?"
Yes, basic coding in Java and C++ in college.
My friend and I actually made a baby virus that we uploaded to our instructers laptop that would write hidden .txt file notepad documents that would boot on startup, fill the doc with "Hello Mr. (instructor's name), regards from (me and my buddy)" 1,000 times, and we had those .txt files dump to his TEMP folder.
We ended up telling him about it near the middle of the semester and gave us both extra credit. Glad he had a sense of humor.
I also took an AI coding class in college in which we programmed video game tanks to manuever around obstacles and learn where numerical checkpoints were on a map and navigating to each of them sequentially. THAT was mind numbingly difficult and took the whole semester, but incredibly neat to learn how an AI operates and retains/recalls information.
FOR x=1 TO 100
IF (x MOD 3 == 0) THEN
PRINT "Fizz"
END IF
IF (x MOD 5 == 0) THEN
PRINT "Buzz"
ELSEIF NOT(x MOD 3 == 0) THEN
PRINT x
END IF
NEXT X
Can it be done shorter and/or without the redundant compare?
Edit: <add indentation and END IF for clarity>

10/09/15 03:47pm
Except this is kind of wrong (assuming implicit newlines...I have no idea what languages this is), because integers divisible by both 3 and 5 will only say "Fizz" and not "FizzBuzz". Editing your code, you would want to do:
FOR x=1 TO 100
IF (x MOD 3 == 0 && x MOD 5) THEN
PRINT "FizzBuzz"
ELSEIF (x MOD 3 == 0) THEN
PRINT "Fizz"
ELSEIF (x MOD 5 == 0) THEN
PRINT "Buzz"
ELSEIF NOT(x MOD 3 == 0) THEN
PRINT x
NEXT X
10/09/15 07:19pm
At Eagle Eye we are actively looking for a few software developers, so we interview candidates on a constant basis. We're based in Austin, which is a very tech savvy town and yet about 50% of the people that come in can't do the Fizz Buzz test succesfully.
It's amazing to me (in a bad way) that people who are applying for a software development job can't even string together a couple of loops.
Yes,
I do not consider my self a programmer but I have found that just exploring, dabbling in the following technologies has increased my level of discernment in purchasing decisions and empowered me to create competitive tailored solutions.
1. Python, SQL, PHP, and Bash for Linux centric glue among JSON, SOAP, XML, REST and XYZ API calls.
2. C for AIO , DIO event loops on embedded devices.
3. Python and C++ frameworks like Wx and Qt for more involved projects. OpenCV, Deep Learning .
From the above list, 1 & 2 have returned the fastest results for my investment in learning. Pursuing items in 3 may some day result in a big payoff but has immediate value in fine tuning the needle on my BS detector.
This is a great discussion. We are an installation company that rely on the manufacturers to couple the software with the hardware. We install products that have APIs and SOAP interfaces. Data synchronization and integration with other products while interesting is not achievable without some coding knowledge. As a sales and business manager who understands the technologies, without a coding background, I feel like we could build a solution with differentiation if we could build the middleware for products to communicate.
So reading the responses from others in the community who can code and share snippets of information gives me a platform to go off and do further research in these topics.
Thanks for sharing.
The Real Question here is how much time do you have to code. As so many have writen the code to the hardware level and its so complicated to do.
Should You?
Too many time s have i got into the program and spent hours trying to figure out what i did and how it would change the operations.
Any skilled programmer, Eng. knows it takes up a lot of time and then does it work with out any hickups.
Back in the day you used to be able to program with in a couple of hours , Now with complicated algorithums that link, command,and structure, multiple cpus,tasking,and chipsets.
Why would you want to go thru the painful, time consuming task.
Tech support Knows thier system and thier engineers know thier software.
Related: Back at the turn of the Century, my partner and I, Jack Hughes, sold our interests in the consultancy that we had grown. After going our separate ways, he started topcoder.com, which has since grown to be a 500,000+ member community dedicated to coding excellence.
Back in our fledgling consultancy days, we had continual code-offs, both formal and informal, designed to encourage developers to sharpen their skills, internally. With topcoder, the idea was to take this concept outside of the organization and create challenging coding competitions, and award real prizes, ($72,000,000 awarded to date), to create a pool of proven performers.
A Super Bowl for Geeks.
The large awards were made possible because of the revenues generated by selling recruiting access to the winners of the competitions.
Certainly Jack had a unquie vision here.
Here's one of their videos from a recent finale.
I spent 10 years as a software developer before going to work with an integrator. I find working with VMS/Access Control systems to not be chanllenging at all after the complex programming I used to write. I have used my skills to write custom interfaces using APIs provided by manufacturers to integrate 2 products together at a fraction of the cost of the manufacturer's custom services divisions. I have lost count as to how many times I have one piece of data going to another system or importing from another system.
While I am sure I am not as efficient as I was 10 years ago, I can troubleshoot issues with the best of them in the field (even though I don't pick up a screwdriver).
Back in the early 90's we were doing client server development with ashton tate (now SQL server), Gupta and other stuff, and we discovered early if the developers weren't developing their skills early and on their own, they'll likely not be a top performer. We also learned smaller development teams were more productive, and more dificult to manage. We flamed out in 95, and abandoned development. I admire those that were able to build synergy and overcome those problems.
Over the years I've seen hundreds of ideas for an application, I keep my enthusiam is check, because marketing and sales is the hardest part.
As for contests, I yield to M. Miller.
I could write code to do the above in some BASIC derivative but I guess I do not see proficiency in that level of coding as being useful. If anything, I would say lack of coding experience is my own biggest failing as an integrator. There are many times I have said "we could do something wonderful with this data" but with no knowledge on how to query it, make use of it, and with no budget to outsource I have been unable to make those changes. With some level of coding skill we could really take integration to a higher level. I am jealous of those that can.
A big problem is finding relevant training to what I would like to code for. I don't even know where to start. Is IPVM looking at providing some articles/training/other resources pertaining to coding? If so, I will be first in line.
Hiring a programmer without FizzBuzzing them first is like hiring a wedding singer without hearing them sing.
What type of coding, assembler, compiler or Silverlight vs Basic vs C sharp.
Machine Language? Octal or binary? I saw the results, being an old systems engineer for Honeywell and IBM, I kind believe that there is slight fudging on the answers.
How many of those answered have gotten thier MCSE or A+. How many have even taken a formal Cisco course. Again who is familiar with Unix, redHat etc.
IMHO. John M.
The skillset and personality types for good network engineers and good developers are very different. Smarts one have books - Wise ones have scars.
Swift Code:
for i in 1...100 {
switch i {
case _ where i % 3 == 0 && i % 5 == 0:
print("fizzbuzz")
case _ where i % 3 == 0:
print("fizz")
case _ where i % 5 == 0:
print("buzz")
default:
print(i)
}
}
Cool, Swift is iOS programming language used in xCode :)
I'm really dating myself with this post. In my late teens, I coded (and sold) video games for the Atari 400/800 personal computer platform (written in 6502 assembly language). Talk about a low level language. And this was back in the days when a coder was responsible for most, if not all, of the game development (coding, graphics, levels, sound effects, music, manual, retail packaging). And the media was a cassette tape… makes the floppy disk seem high tech.
Of course the days of the single developer are back with the popularity of mobile apps, albeit with much more modern development tools (my development tools were graph paper and the bible of coding for the platform, De Re Atari). To this day I never bothered to learn a high level language like Basic, C or Javascript. But if I was in a MacGyver situation and had to re-program a device that had a 6502 CPU, I could save the day!

This reminds me of a drinking game we played in college called Buzz. You had to go around the room and count, when a 7, double digit, or mutliple of 7 came up, you had to say buzz. If you missed it, you had to drink.
Maybe if I'd spent less time playing buzz, I could have learned how to program it.
I entertained the idea of majoring in computer science in college, i quickly realized it wasn't going to be for me... in my first year courses we programmed using ada... coding is someting I would like to grow in my knowledge in more, my oldest daughtere is currently learning python and I am learning along with her... Code Academy and Code School look like great sites I am going to check them out for my daughters...
Newest Discussions
Discussion | Posts | Latest |
---|---|---|
Started by
John Honovich
|
35
|
8 minutes by Corbin Hambrick |
Started by
Undisclosed Integrator #1
|
13
|
less than a minute by Corbin Hambrick |
Started by
John Honovich
|
2
|
about 1 hour by Undisclosed #1 |
Started by
Corbin Hambrick
|
3
|
less than a minute by John Honovich |
Started by
John Honovich
|
1
|
less than a minute by John Honovich |