Sponsored Content
The Lounge What is on Your Mind? Cyberspace Situational Awareness - End of Year Research Update Post 302988216 by Neo on Thursday 22nd of December 2016 01:48:52 AM
Old 12-22-2016
Signal Cyberspace Situational Awareness - End of Year Research Update

Here is an end-of-year update of my CSA research for 2016. A BIG THANK YOU to everyone at unix.com who keeps the forums running so well as I write code for cyberspace situational awareness experiments and do my research.

I am still hopelessly trying to save the world from the unintended consequences of the exponential growth of cyberspace .... !!!

Update on 2016 Cyberspace Situational Awareness Research

Happy Holidays!
These 8 Users Gave Thanks to Neo For This Post:
 

7 More Discussions You Might Find Interesting

1. What is on Your Mind?

Cyberspace Situation Graphs - Cyberspace Situational Awareness

Hi. I've been very busy this month working on resurrecting my old projects related to "cyberspace situational awareness" (CSA) which began last month by surveying the downstream literature that referenced my papers in this area using Google Scholar and also ResearchGate and posting updates on my... (5 Replies)
Discussion started by: Neo
5 Replies

2. What is on Your Mind?

Speed Bumps on the Road to Cyber Situational Awareness - Tim Bass

Speed Bumps on the Road to Cyber Situational Awareness Happy Holidays! (0 Replies)
Discussion started by: Neo
0 Replies

3. What is on Your Mind?

Calculating Warp Coordinates in Cyberspace - Cyberspace Situational Awareness

Please message me or post in this thread if anyone is interested in contributing some C, C++, or C# code for this project. Right now we have an open source C++ git project (created by someone else a few years ago) that fails when we try to compile on Ubuntu. I need someone to fix the make... (4 Replies)
Discussion started by: Neo
4 Replies

4. What is on Your Mind?

Application for Virtualizing CyberSpace like Outer Space for Cyberspace Situational Awareness

Richard Zuech annotates his first experience flying in virtualized cyberspace hunting the bad guys! ... and he finds some! Application for Virtualizing CyberSpace like Outer Space for Cyberspace Situational Awareness (0 Replies)
Discussion started by: Neo
0 Replies

5. What is on Your Mind?

Virtualized Cyberspace, Cyberspace Consciousness and Simulation Theory - What Do You Think?

What do you think? Read this: Virtualized Cyberspace, Cyberspace Consciousness and Simulation Theory and comment below.... Are we in a computer simulation? Yes or No? Thanks! (0 Replies)
Discussion started by: Neo
0 Replies

6. What is on Your Mind?

Virtualized Cyberspace - Visualizing Patterns & Anomalies for Cognitive Cyber Situational Awareness

Our team just published this technical report on ResearchGate: Virtualized Cyberspace - Visualizing Patterns & Anomalies for Cognitive Cyber Situational Awareness ABSTRACT ACKNOWLEDGMENTS Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License This... (0 Replies)
Discussion started by: Neo
0 Replies

7. What is on Your Mind?

Back to Cyber Situational Awareness Software Development

After mulling over self-publishing a cyberspace situational awareness mini-series starting with a short book on human cyber consciousness, I think it is best I delay writing a book and focus on software development. The general idea of human cyber consciousness is indirectly discussed in this... (0 Replies)
Discussion started by: Neo
0 Replies
COPYRIGHT-UPDATE(1)					      cvs status - formatter					       COPYRIGHT-UPDATE(1)

NAME
copyright-update - Update Copyright information in files SYNOPSIS
copyright-update [options] FILE [FILE ...] | --recursive PATH [PATH ...]> DESCRIPTION
Update the copyright information in set of files, possibly recursively, matching content criteria. The updating affects copyright year, GPL address information etc. The line must have word "Copyright", a space, three characters '(C)' (or a U+00A9 UTF copyright sign), a space, and the range of years. Varying amount of spaces and tabs are permitted, but there must be no spaces around the dash-character in YEAR-YEAR. Examples: A whitespace, or multiple, required | | No space between years | | | Copyright (C) YYYY-YYYY Copyright: (C) YYYY-YYYY | A colon is optional OPTIONS
-a, --auto In automatic mode, the author's name is read from environment variable NAME and only lines matching 'Copyright.*$NAME' are affected. If NAME is not set, read information from EMAIL. See section ENVIRONMENT. This option effectively presets value for the --line option. -d, --debug LEVEL Turn on debug. Level can be in range 0-10. --fsf-address Change FSF (a)ddress paragraphs pointing only to URL. This format is the format used in the GPL v3 license text: You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. Affects: paragraph with old address: You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Affects: paragraph with new address: You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301USA -h, --help Print text help --help-html Print help in HTML format. --help-man Print help in manual page man(1) format. -i, --include REGEXP Include files mathing regexp. The match is done against whole path. The option can be used multiple times. If this option is not supplied, every file is automatically included. The matches can be further filtered by using options --exclude. -l, --line REGEXP Change only lines which match REGEXP. The match is case-insensitive. -r, --recursive Recursively search all direcotories given at command line. -R, --regexp REGEXP Change only files whose content matches REGEXP. The file is read in as a one big string so it's possible to match using Perl regular epxressions accross lines. An example: '(?smi)This.*multi.*line.*match'. See perlre(1) for more information about 'smi' modifiers. This options can be used as a preliminary Content criteria, to select the file, before --line option finds the correct Copyright line. -t, --test, --dry-run Run in test mode. Show what would happen. No files are changed. -v, --verbose LEVEL Print informational messages. Increase numeric LEVEL for more verbosity. -V, --version Print contact and version information -x, --exclude REGEXP Ignore files mathing regexp. The match is done against whole path. The option can be used multiple times. This option is applied after possible --include matches. -y, --year YEAR Update files using YEAR. Year value must be four digits. The default is current calendar year. -Y, --no-year Disable updating year. EXAMPLES
The primary use is to update files according to the current year: copyright-update.pl --verbose 1 [--test] [--year YYYY] * Update only C-code file: copyright-update.pl --verbose 1 --include "*.[ch]" --recursive . It is possible to restrict updating files recursively to only those files whose content match regexp, like author is "Mr. Foo". The lines affected are those that match --line regular expression. copyright-update.pl --recursive --regexp "Author:.*Mr. Foo" --line 'Foo' --ignore '.(bak|bup|[~#]])$' --verbose 1 --year 2002 --test . TROUBLESHOOTING
None. EXAMPLES
None. ENVIRONMENT
NAME In the form 'Firstname Lastname'. If set, this is used in option --auto. EMAIL In the form 'Firtname.Lastname@example.com>'. If set, this is used in option --auto only if environment variable NAME is not set. The localpart in email address must match case insensitive regexp '^[a-z-]+.[a-z-]+@' or it is not used: address@example.com Not used dr.foo.company@example.com Not used ------------- Localpart FILES
None. SEE ALSO
licensecheck(1) program in Debian. COREQUISITES
Uses standard Perl modules. AVAILABILITY
Homepage is at http://freshmeat.net/projects/copyright-update AUTHOR
Copyright (C) Jari Aalto This program is free software; you can redistribute and/or modify program under the terms of GNU General Public license either version 2 of the License, or (at your option) any later version. perl v5.10.1 2010-03-07 COPYRIGHT-UPDATE(1)
All times are GMT -4. The time now is 05:36 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy