Sponsored Content
The Lounge What is on Your Mind? Ravinder Singh Just Earned His Green Web Dev Ops Badge Post 303028286 by wisecracker on Thursday 3rd of January 2019 01:12:34 PM
Old 01-03-2019
Congratulations.
Well done matey...
Another one under your belt...

It is really nice to be recognised and I thank all who have recognised our input.

From experience take one piece of advice mate. Take your projects and learning one step at a time.
(I have done lots of projects for differing platforms and many are here on this site, mainly for OSX. Also proper apps, biased towards measuring/test gear.)

Initially what you intend to do seems quick and easy and version changes are slick and fast, until, you start adding subtleties, features and upgrades.
After a longish period one gets feature creep and application fatigue sets in...
An OS is always your biggest obstacle - Apple have done me NO favours from version 10.7.1 to current... The amount of times I have had to change
the Applescript inside AudioScope is unreal. If you are unlucky like me then minor alterations to the OS can cause headaches when your code breaks.
Dependencies are your next biggest bugbear. 'xterm' was near de-facto in 2012 in just about every consumer *NIX-like install; NOT any more.
A vrigin OSX 10.7.x to present comes with Python 2.7.x AND scipy, scipy.io, numpy and etc as part of its install; it does NOT have sox.
Many Linux flavours OTOH has sox but NOT scipy and scipy.io.
CygWin didn't have hexdump, bc or dc a couple of years ago, dunno about today...
So what starts a a functional item ends up with feature creep, OS headaches and finally application fatigue...

One HAS to take one's mind off of one's main project and do smaller things until the mental urge sets that compassion again to go back to the main project.

You are one eager and compassionate guy and do hope for your sake that you don't lose that compassion because it's guys like you that come out with brilliant
ideas that produce the next step in our evolution, physical, mental, practical and technical...

And finally again, superb and well done you deserve it and I am glad to be a witness of it...

Bazza...

Last edited by wisecracker; 01-03-2019 at 02:49 PM.. Reason: Spelling etc...
This User Gave Thanks to wisecracker For This Post:
 

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Mac OS X & Web Dev

Could someone recommend a good book? Regarding Unix and Mac os X? I know the OS is new, but Unix ain't. I would like to know more about setting up the webserver on my machine. All the HTML works fine, it's just when i try to execute a cgi, php or a pl script.. :( I have tried and tried to... (2 Replies)
Discussion started by: Chojin
2 Replies

2. Solaris

What is /dev/tty /dev/null and /dev/console

Hi, Anyone can help My solaris 8 system has the following /dev/null , /dev/tty and /dev/console All permission are lrwxrwxrwx Can this be change to a non-world write ?? any impact ?? (12 Replies)
Discussion started by: civic2005
12 Replies

3. Solaris

Lun remove, stuck in /dev/dsk and /dev/rdsk

So, we removed a LUN from the SAN and the system is refusing to remove the references to it in the /dev folder. I've done the following: devfsadm -Cv powermt -q luxadm -e offline <drive path> luxadm probe All those commands failed to remove the path. The drive stills shows up as <drive... (13 Replies)
Discussion started by: DustinT
13 Replies

4. What is on Your Mind?

Please Welcome Ravinder Singh to the Moderation Team

On this special Happy News Year day, 1 January 2019, I am pleased to promote Ravinder Singh to UNIX.COM Moderator, for at least the following reasons: Ravinder Loves UNIX.COM Ravinder has 1,372 Thanks, which puts him in the Top Ten in that important single category. Ravinder is one of... (8 Replies)
Discussion started by: Neo
8 Replies

5. Web Development

Notes with Ravinder on Badging System Development Part II

Part II: Current PHP file Beta 73 Not Optimized: <?php $version = 73; $query = "SELECT * FROM " . TABLE_PREFIX . "user WHERE userid='" . $uid . "'"; $usertable = $db->query_read_slave($query); $modaluser = $db->fetch_array($usertable); $modaluser = gmdate("d F Y", $modaluser); $modaluser... (48 Replies)
Discussion started by: Neo
48 Replies

6. What is on Your Mind?

Moderators of the Year 2019 - Ravinder Singh and Victor Berridge

Today, I am very pleased to announce that the Moderator of the Year Award, 2019 has two very deserving winners. Ravinder Singh (RavinderSingh13) and Victor Berridge (vbe) Victor (vbe) has been a member of unix.com close to 15 years (first joined the site in 2005) and has been moderating... (5 Replies)
Discussion started by: Neo
5 Replies
Dev(3)							User Contributed Perl Documentation						    Dev(3)

NAME
PDL::Core::Dev - PDL development module DESCRIPTION
This module encapsulates most of the stuff useful for PDL development and is often used from within Makefile.PL's. SYNOPSIS
use PDL::Core::Dev; if ($^O =~ /win32/i) { warn "Win32 systems not yet supported. Will not build PDL::IO::Browser"; write_dummy_make(unsupported('PDL::XXX','win32')); return; } FUNCTIONS
isbigendian Is the machine big or little endian? print "Your machins is big endian. " if isbigendian(); returns 1 if the machine is big endian, 0 if little endian, or dies if neither. It uses the "byteorder" element of perl's %Config array. my $retval = isbigendian(); trylink a perl configure clone if (trylink 'libGL', '', 'char glBegin(); glBegin();', '-lGL') { $libs = '-lGLU -lGL'; $have_GL = 1; } else { $have_GL = 0; } $maybe = trylink 'libwhatever', $inc, $body, $libs, $cflags, {MakeMaker=>1, Hide=>0, Clean=>1}; Try to link some C-code making up the body of a function with a given set of library specifiers return 1 if successful, 0 otherwise trylink $infomsg, $include, $progbody, $libs [,$cflags,{OPTIONS}]; Takes 4 + 2 optional arguments. o an informational message to print (can be empty) o any commands to be included at the top of the generated C program (typically something like "#include "mylib.h"") o the body of the program (in function main) o library flags to use for linking. Preprocessing by MakeMaker should be performed as needed (see options and example). o compilation flags. For example, something like "-I/usr/local/lib". Optional argument. Empty if omitted. OPTIONS MakeMaker Preprocess library strings in the way MakeMaker does things. This is advisable to ensure that your code will actually work after the link specs have been processed by MakeMaker. Hide Controls if linking output etc is hidden from the user or not. On by default except within the build of the PDL distribution where the config value set in perldl.conf prevails. Clean Remove temporary files. Enabled by default. You might want to switch it off during debugging. perl v5.8.0 2002-06-29 Dev(3)
All times are GMT -4. The time now is 04:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy