Re: [OCLUG-Tech] some weird shell parameter substitution constructs

2018-04-08 Thread Robert P. J. Day
On Sun, 8 Apr 2018, Stephen M. Webb wrote: > On 2018-04-08 04:21 AM, Robert P. J. Day wrote: > > and there's this near the top: > > > > KUBERNETES_RELEASE_URL="${KUBERNETES_RELEASE_URL:-https://dl.k8s.io}"; > > > > ok, that will admitt

Re: [OCLUG-Tech] some weird shell parameter substitution constructs

2018-04-08 Thread Robert P. J. Day
On Sun, 8 Apr 2018, Stephen M. Webb wrote: > On 2018-04-08 04:21 AM, Robert P. J. Day wrote: > > not sure if i'm reading a shell script properly ... here's a script > > for downloading and installing kubernetes: > > > > https://get.kubernetes.io/ >

[OCLUG-Tech] some weird shell parameter substitution constructs

2018-04-08 Thread Robert P. J. Day
not sure if i'm reading a shell script properly ... here's a script for downloading and installing kubernetes: https://get.kubernetes.io/ but it seems to be doing strange (messy) things with parameter substitution. first, there's this bit of weirdness partway through the script: if [[

[OCLUG-Tech] gnu make: the superfluous use of "||:"

2018-03-29 Thread Robert P. J. Day
digging through the build system for the hyperledger fabric distributed ledger technology, and noticed something in the Makefile i'd never seen before that took me a couple seconds to recognize: .PHONY: clean clean: docker-clean unit-test-clean release-clean -@rm -rf build ||: .P

Re: [OCLUG-Tech] is "xargs" really still useful just for limiting command line size?

2018-03-16 Thread Robert P. J. Day
On Fri, 16 Mar 2018, Michael P. Soulier wrote: > On 16/03/18 Robert P. J. Day said: > > > again, as i mentioned, i do understand the value of xargs > > because of the plethora of useful "tricks" like the above, but > > those features aside, the basic question i

Re: [OCLUG-Tech] is "xargs" really still useful just for limiting command line size?

2018-03-16 Thread Robert P. J. Day
On Fri, 16 Mar 2018, James wrote: > It is necessary for running a command on all files matching a > pattern. i'm pretty sure that's not true. > Wildcarding substitutes the full file names of each matching result > of the wildcard on the command line. Thousands of matching > names/paths can eas

Re: [OCLUG-Tech] is "xargs" really still useful just for limiting command line size?

2018-03-16 Thread Robert P. J. Day
On Fri, 16 Mar 2018, Shawn H Corey wrote: > On Fri, 16 Mar 2018 09:59:53 -0400 > "Michael P. Soulier" wrote: > > > On 16/03/18 Robert P. J. Day said: > > > > > course i taught recently had a section on "xargs", emphasizing > > > its

[OCLUG-Tech] is "xargs" really still useful just for limiting command line size?

2018-03-16 Thread Robert P. J. Day
course i taught recently had a section on "xargs", emphasizing its value(?) in being able to run a command in bite-size pieces but, these days, is that really that much of an issue? IIRC (and i might not), the historical limiting factor for command line length was the limit of an internal buf

Re: [OCLUG-Tech] what is the purpose of the "-w" option of "sysctl" command?

2018-03-14 Thread Robert P. J. Day
On Wed, 14 Mar 2018, Rick Leir wrote: > Robert > I am not close to my console, so this is a guess.. > What is in your > /usr/lib/sysctl.d/00-system.conf file? i have no such file. rday ___ Linux mailing list Linux@lists.oclug.on.ca http://oclug.on.ca

Re: [OCLUG-Tech] is there a FHS/LSB rationale for installing in /usr/bin vs /usr/sbin?

2018-03-14 Thread Robert P. J. Day
On Wed, 14 Mar 2018, Shawn H Corey wrote: > On Wed, 14 Mar 2018 07:03:55 -0400 (EDT) > "Robert P. J. Day" wrote: > > > On Wed, 14 Mar 2018, Stephen M. Webb wrote: > > > > > On 2018-03-14 05:22 AM, Robert P. J. Day wrote: > > > > > > >

[OCLUG-Tech] what is the purpose of the "-w" option of "sysctl" command?

2018-03-14 Thread Robert P. J. Day
just noticed something odd ... on my fedora 27 system, the man page for sysctl reads under PARAMETERS: variable=value To set a key, use the form variable=value where variable is the key and value is the value to set it to. If the value contains quotes or characters whi

Re: [OCLUG-Tech] is there a FHS/LSB rationale for installing in /usr/bin vs /usr/sbin?

2018-03-14 Thread Robert P. J. Day
On Wed, 14 Mar 2018, Stephen M. Webb wrote: > On 2018-03-14 05:22 AM, Robert P. J. Day wrote: > > > > obviously, it's not a big deal since both /usr/bin and /usr/sbin are > > part of the normal search path for even regular users, > > Only on an improperly configu

[OCLUG-Tech] is there a FHS/LSB rationale for installing in /usr/bin vs /usr/sbin?

2018-03-14 Thread Robert P. J. Day
more nitpicky pedantry, but i was summarizing some handy system H/W utilities and noticed that, while lsusb and lspci philosophically do the same thing (that is, display system info), on my fedora system, they are installed differently: $ type lsusb lsusb is /usr/bin/lsusb $ type lspci

[OCLUG-Tech] does anyone use "star" for ACL-aware archiving?

2018-03-09 Thread Robert P. J. Day
was recently asked if i could teach a course to prepare some folks to write the RHCSA (red hat certified sys admin) exam, so i was reviewing the official list of what they would need to know here: https://www.redhat.com/en/services/training/ex200-red-hat-certified-system-administrator-rhcsa-exa

Re: [OCLUG-Tech] does current gnu grep support EREs out of the box?

2018-03-06 Thread Robert P. J. Day
On Tue, 6 Mar 2018, Richard Guy Briggs wrote: > On 2018-03-06 05:35, Robert P. J. Day wrote: > > > > course i taught last week provided courseware that distinguished > > between grep's basic RE support and "extended" RE support, which > > surprised m

[OCLUG-Tech] does current gnu grep support EREs out of the box?

2018-03-06 Thread Robert P. J. Day
course i taught last week provided courseware that distinguished between grep's basic RE support and "extended" RE support, which surprised me as, on my fedora 27 system, the man page for grep has the following snippets: "In addition, the variant programs egrep and fgrep are the same as grep -E

Re: [OCLUG-Tech] what the heck is the rationale for 'X' in chmod command?

2018-02-23 Thread Robert P. J. Day
On Fri, 23 Feb 2018, Stephen M. Webb wrote: > On 2018-02-23 02:51 AM, Robert P. J. Day wrote: > > > > i can't believe i've never noticed the 'X' (upper case) permission > > setting for the chmod command, explained thusly in the man page: > > > &

[OCLUG-Tech] what the heck is the rationale for 'X' in chmod command?

2018-02-22 Thread Robert P. J. Day
i'm just a bit puzzled. rday -- ================ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn:

Re: [OCLUG-Tech] does anyone still use "dump" for backups these days?

2018-02-22 Thread Robert P. J. Day
On Thu, 22 Feb 2018, Dianne Skoll wrote: > On Thu, 22 Feb 2018 10:33:24 -0500 (EST) > "Robert P. J. Day" wrote: > > > but what are folks out there using for their backups these days? > > tar? rsync? amanda? > > I use rsync. i'll keep track of the r

[OCLUG-Tech] does anyone still use "dump" for backups these days?

2018-02-22 Thread Robert P. J. Day
iscourage people from using it. rday -- ================ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http

[OCLUG-Tech] thank y'all for taking so much of that excess off my hands

2018-02-09 Thread Robert P. J. Day
after dragging in three boxes of stuff last night to OCLUG meeting, i was left with just a couple dev kits and a couple books. i still have a fair bit more i'm pawing through, i may have another pile of stuff to give away at the next meeting as well. rday ___

[OCLUG-Tech] is there a convenient door this evening i can pull up to and unload?

2018-02-08 Thread Robert P. J. Day
i have a couple boxes of stuff for this evening; can someone suggest the appropriate door to pull up to briefly this evening where i can get a hand unloading? rday ___ Linux mailing list Linux@lists.oclug.on.ca http://oclug.on.ca/mailman/listinfo/linu

[OCLUG-Tech] prelinimary list of dev kits coming to meeting on thursday

2018-02-06 Thread Robert P. J. Day
http://crashcourse.ca/dokuwiki/doku.php?id=oclug_dev_kits the list might get longer by then. and i'm bringing a box of books as well. rday -- Robert P. J. Day Ottawa, Ontario, C

[OCLUG-Tech] looking for recommendations for portable MP3/FLAC music player

2018-02-05 Thread Robert P. J. Day
currently ripping my girifriend's entire CD collection to FLAC format and, naturally, she wants to be able to take some significant subset of that with her on her travels. i'm ripping to FLAC as i want to, at some point, set up an in-home (linux-based) music server and, from FLAC, i can always d

Re: [OCLUG-Tech] why does g++ not issue a narrowing error?

2018-02-03 Thread Robert P. J. Day
On Sat, 3 Feb 2018, Stephen M. Webb wrote: > On 2018-02-03 04:52 AM, Robert P. J. Day wrote: > > > > currently rewriting my C++ courses from some time back, and wanted > > to demonstrate a simply narrowing error; to wit: > > > > int > > main() > > {

[OCLUG-Tech] cleaning out the home office, bringing lots of stuff to next meeting

2018-02-03 Thread Robert P. J. Day
... rday -- ======== Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjda

[OCLUG-Tech] why does g++ not issue a narrowing error?

2018-02-03 Thread Robert P. J. Day
currently rewriting my C++ courses from some time back, and wanted to demonstrate a simply narrowing error; to wit: int main() { bool b1 {true}; bool b2 {false}; bool b3 {7};// narrowing error? int i {42}; int j {42.1}; // narrowing error? } odd

[OCLUG-Tech] recommendations for decent, online blockchain tutorials?

2018-01-29 Thread Robert P. J. Day
a couple friends who are business-savvy but not tech-savvy have asked me to explain blockchains to them, and i'm embarrassed to admit i haven't dug into that deeply, so i figured i might as well figure it out ... i've found a number of what look like passable online tutorials, wondering if anyon

Re: [OCLUG-Tech] fastest way to do full home dir backup to fresh HD?

2017-12-27 Thread Robert P. J. Day
t see an attachment. rday -- ================ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://t

[OCLUG-Tech] fastest way to do full home dir backup to fresh HD?

2017-12-27 Thread Robert P. J. Day
imited by the throughput of the USB port and i'm currently doing it the slowest way possible. thoughts? rday -- ================ Robert P. J. Day Ottawa, Ontario, CANADA

Re: [OCLUG-Tech] Certified RHEL7 laptop?

2017-12-23 Thread Robert P. J. Day
clearly didn't work with a major linux distro. rday -- ================ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter:

[OCLUG-Tech] last reminder of free git talk/pizza lunch downtown today

2017-11-24 Thread Robert P. J. Day
rday -- Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn: http://ca.linkedin.com/in/r

[OCLUG-Tech] don't forget -- pizza and git this friday at the code factory

2017-11-22 Thread Robert P. J. Day
reminder that this friday is free pizza lunch at http://www.thecodefactory.ca/ downtown, where i will regale one and all with a 1-hour tutorial on git, so if you have friends or colleagues who work downtown who would be interested, let them know and somehow keep me in the loop so we know how muc

Re: [OCLUG-Tech] looking for decent sites for C++11 references/tutorials

2017-11-22 Thread Robert P. J. Day
On Wed, 22 Nov 2017, Stephen M. Webb wrote: > On 2017-11-22 06:14 AM, Robert P. J. Day wrote: > > > > i'm teaching 5 days worth of C++11 in january, already been handed > > the courseware, and i'd like to put together a page of quality links > > to C++11/

[OCLUG-Tech] looking for decent sites for C++11 references/tutorials

2017-11-22 Thread Robert P. J. Day
, but if people have some recommendations, that would be just ducky. thank you kindly. rday -- ================ Robert P. J. Day Ottawa, Ontario, CANADA http://cra

[OCLUG-Tech] lunch-time pizza/git tutorial, friday, nov 24, the code factory

2017-11-21 Thread Robert P. J. Day
we have enough pizza and drinks to go around. questions? rday -- ============ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter:

[OCLUG-Tech] free git tutorial, and free lunch time pizza, downtown, nov 24

2017-11-11 Thread Robert P. J. Day
ome available. rday -- ================ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter

[OCLUG-Tech] wrapping up one contract, might be looking for another

2017-10-28 Thread Robert P. J. Day
o many dev kits. -- ============ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn: http://ca.linkedi

[OCLUG-Tech] what is the meaning of leading "_" in gcc function calls?

2017-10-01 Thread Robert P. J. Day
ll? what does it mean? rday -- ================ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http:/

Re: [OCLUG-Tech] can i set up a d-link DCS-936L network camera to view via linux?

2017-09-20 Thread Robert P. J. Day
On Wed, 20 Sep 2017, Richard Guy Briggs wrote: > On 2017-09-20 07:17, Robert P. J. Day wrote: > > On Wed, 20 Sep 2017, Robert P. J. Day wrote: > > > On Wed, 20 Sep 2017, Richard Guy Briggs wrote: > > > > On 2017-09-20 04:09, Robert P. J. Day wrote: > > > &

Re: [OCLUG-Tech] can i set up a d-link DCS-936L network camera to view via linux?

2017-09-20 Thread Robert P. J. Day
On Wed, 20 Sep 2017, Robert P. J. Day wrote: > On Wed, 20 Sep 2017, Richard Guy Briggs wrote: > > > On 2017-09-20 04:09, Robert P. J. Day wrote: > > > > in short, at least for this camera, i absolutely require an > > > android or iphone with the d-link app fo

Re: [OCLUG-Tech] can i set up a d-link DCS-936L network camera to view via linux?

2017-09-20 Thread Robert P. J. Day
On Wed, 20 Sep 2017, Richard Guy Briggs wrote: > On 2017-09-20 04:09, Robert P. J. Day wrote: > > in short, at least for this camera, i absolutely require an > > android or iphone with the d-link app for the initial > > configuration, which is kind of a pain, unless i hav

Re: [OCLUG-Tech] can i set up a d-link DCS-936L network camera to view via linux?

2017-09-20 Thread Robert P. J. Day
for this camera, i absolutely require an android or iphone with the d-link app for the initial configuration, which is kind of a pain, unless i have this completely wrong. am i at least understanding all this correctly? rday -- ===

[OCLUG-Tech] is there a way to identify superfluous .gitignore lines?

2017-09-10 Thread Robert P. J. Day
it check-ignore" that will scan the hierarchy of .gitignore files once that build is done and display the .gitignore entries for which there are no matches? rday -- ================ Robert P. J. Day Ott

[OCLUG-Tech] "git filter-branch" to undo the effect of a single commit that added stuff?

2017-09-09 Thread Robert P. J. Day
ion of /subdir was added by that single commit, would this do what it appears to do? or am i making this too difficult? rday -- Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter:

[OCLUG-Tech] a couple questions on "git filter-branch", if i may

2017-09-06 Thread Robert P. J. Day
will now continue poring over the docs, and if anyone wants to provide a link to a really good tutorial on git filter-branch apart from the standard docs, feel free. rday -- ============ Robert P. J. Day

[OCLUG-Tech] question about how similar device tree .dts files can be

2017-09-06 Thread Robert P. J. Day
can anyone point to an example in the kernel code that is that specific? in any event, i'm fairly convinced that that is a really bad idea, but just wondering if it's possible. rday -- Robert

[OCLUG-Tech] what is the shortest *realistic* .dts device tree source file?

2017-08-31 Thread Robert P. J. Day
ontent of the omap2420-n800.dts file. would it make any sense to not have at least that content in a .dts file? rday -- ==== Robert P. J. Day Ottawa, Ontario, CANADA htt

[OCLUG-Tech] getting rid of some embedded systems

2017-06-18 Thread Robert P. J. Day
list in a few days. rday -- ============ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://tw

Re: [OCLUG-Tech] Linux infotainment/automotive platform questions

2017-06-14 Thread Robert P. J. Day
s unfortunate. rday -- ================ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn: http://ca.li

Re: [OCLUG-Tech] Linux infotainment/automotive platform questions

2017-06-14 Thread Robert P. J. Day
, boundary devices, renesas, qualcomm ... quite the collective of people co-operating to make this happen. rday -- Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter:

Re: [OCLUG-Tech] Linux infotainment/automotive platform questions

2017-06-14 Thread Robert P. J. Day
motive Grade Linux. rday -- ============ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn: http://

Re: [OCLUG-Tech] Linux infotainment/automotive platform questions

2017-06-14 Thread Robert P. J. Day
ftware is based on openembedded/yocto project, the downloadable S/W is here: https://wiki.automotivelinux.org/agl-distro/source-code#download_master_branch so anyone can peruse, download and build the code themselves. rday -- ======

Re: [OCLUG-Tech] Linux infotainment/automotive platform questions

2017-06-14 Thread Robert P. J. Day
ps://www.wired.com/2015/04/dmca-ownership-john-deere/ rday -- ================ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn:

Re: [OCLUG-Tech] is there any way to see the staged/unstaged changes in a stash?

2017-05-15 Thread Robert P. J. Day
u elaborate? rday -- ================ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn: http://ca.link

[OCLUG-Tech] is there any way to see the staged/unstaged changes in a stash?

2017-05-06 Thread Robert P. J. Day
s) but surely there's a simpler way, no? rday -- ============ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter:

[OCLUG-Tech] any git command to recursively display a commit in the object store?

2017-04-16 Thread Robert P. J. Day
ly see the commit/tree/blob relationships? rday -- ======== Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter:

[OCLUG-Tech] need some advice on how to prune my current wiki so i can move it

2017-03-31 Thread Robert P. J. Day
g just the current pages. i suspect i haven't specified all the info necessary to get a meaningful answer to this, so any guidance would be appreciated. where should i start? rday -- ================ Robert P. J. Day

[OCLUG-Tech] can one hack PAM to reuse a password that's not supposed to be reused?

2017-03-21 Thread Robert P. J. Day
remembered passwords? just curious. rday -- ======== Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.

Re: [OCLUG-Tech] Looking for a Linux Consultant

2017-03-15 Thread Robert P. J. Day
uages are we talking about here? c? c++? perl? python? java? you'll need to provide more info. rday -- ============ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcour

[OCLUG-Tech] looking for a new host for my web site for april 1

2017-03-10 Thread Robert P. J. Day
rday -- Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn: http://ca.linkedin.com/in/r

[OCLUG-Tech] where downtown (byward market) can i donate cables?

2017-02-18 Thread Robert P. J. Day
cleaning out the place, and have, literally, bags of net and USB cables and other stuff. is there a geek-oriented charity i can dump this with that could make use of it? rday -- Robert P. J. Day

[OCLUG-Tech] how can i rebase, en masse, a collection of branches upon branches?

2016-10-12 Thread Robert P. J. Day
that does this. thoughts? rday -- ================ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn:

[OCLUG-Tech] how can i display what remote a git branch name maps to without tracking it?

2016-10-11 Thread Robert P. J. Day
that might not be true if i add several remotes.) rday -- ================ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter:

[OCLUG-Tech] what exactly does a "git fetch --dry-run" do?

2016-10-10 Thread Robert P. J. Day
hes from the remote. so why is it referred to as a "dry run" when stuff is actually being fetched? that seems just a tad misleading. rday -- ================ Robert P. J. Day Ottawa, Ontario, C

[OCLUG-Tech] what do people recommend for git "submodules"?

2016-10-08 Thread Robert P. J. Day
i mean, other than actual submodules, if one wants to lock a number of git repos together with versioning, are submodules generally considered adequate? i've heard a lot of dissatisfaction with submodules, and a few people have recommended moving up to using "repo" to accomplish the same thing.

Re: [OCLUG-Tech] is there a revision symbol for the root commit?

2016-09-28 Thread Robert P. J. Day
On Wed, 28 Sep 2016, Alex Pilon wrote: > On Wed, Sep 28, 2016 at 04:52:59AM -0400, Robert P. J. Day wrote: > > embarrassed to admit i don't know this, but is there a revision > > symbol for a repo's root commit? i don't think i've ever seen that > > me

Re: [OCLUG-Tech] what does git not do *easily* you shouldn't be doing anyway?

2016-09-28 Thread Robert P. J. Day
On Wed, 28 Sep 2016, Alex Pilon wrote: > On Wed, Sep 28, 2016 at 04:48:15AM -0400, Robert P. J. Day wrote: > > perfect example: "how do i find the Nth last version of a file?" > > now, you can certainly do this in git, using "git log", then extract > >

[OCLUG-Tech] is there a revision symbol for the root commit?

2016-09-28 Thread Robert P. J. Day
embarrassed to admit i don't know this, but is there a revision symbol for a repo's root commit? i don't think i've ever seen that mentioned anywhere. rday -- ================ Robert P. J. Day

[OCLUG-Tech] what does git not do *easily* you shouldn't be doing anyway?

2016-09-28 Thread Robert P. J. Day
ure why people *need* that sort of info. in any event, any thoughts on the sorts of things people do with other VCSes for which there is no immediate git counterpart, but for which there is no comprehensible need to do that in the first place? rday -- ===============

[OCLUG-Tech] would local people take training courses on a weekend?

2016-09-23 Thread Robert P. J. Day
it would fly? rday -- ================ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn: http://ca.li

[OCLUG-Tech] is there a recipe to display the git object store hierarchically?

2016-09-23 Thread Robert P. J. Day
do that? rday -- ============ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn: http://ca.linkedi

Re: [OCLUG-Tech] does a DVCS *necessarily* mirror the entire repo history?

2016-09-23 Thread Robert P. J. Day
On Thu, 22 Sep 2016, Alex Pilon wrote: > On Thu, Sep 22, 2016 at 07:43:34AM -0400, Robert P. J. Day wrote: > > (side note: currently updating all my git wiki pages and tutorials, > > so i'll be asking a number of questions about git, including > > apparently trivial

[OCLUG-Tech] does a DVCS *necessarily* mirror the entire repo history?

2016-09-22 Thread Robert P. J. Day
ork but, theoretically, it might be possible to still have some sort of distributed operation where you don't have the entire repo history on your local machine. thoughts? rday -- ================ Robert P. J. Day

[OCLUG-Tech] curious about people using git on mac or windows

2016-09-22 Thread Robert P. J. Day
don't know if that's entirely current, so what is the current best practices for getting git on mac and windows from people actually using it on those platforms? thanks muchly. rday -- ======== Robert

Re: [OCLUG-Tech] how to best (securely?) install S/W on 1000s of remote sites?

2016-09-06 Thread Robert P. J. Day
to securely download those images (if, in fact, they even *need* security). i'm still pondering the possibilities. more in a bit. rday > > roland > > > On Tue, Sep 6, 2016 at 2:40 PM, Robert P. J. Day > wrote: > > (if there is an obvious solution to this, then i&#x

[OCLUG-Tech] how to best (securely?) install S/W on 1000s of remote sites?

2016-09-06 Thread Robert P. J. Day
oading the base linux distro doesn't need to be that secure as it's just linux, but once that remote install comes up for the first time, it can (somehow securely) download the proprietary app. am i overthinking this? is there a simply solution i'm

[OCLUG-Tech] anyone want/need a Samsung 950 Pro 512GB M.2 2280 NVMe PCIe 3.0X4 SSD?

2016-08-16 Thread Robert P. J. Day
t order that SM951, and i'll sell this one for $300, which is a pretty decent discount over the current $459 amazon.ca price. let me know if you're interested. rday -- ==== Robert P. J. Day

[OCLUG-Tech] a couple (simple?) systemd questions

2016-08-05 Thread Robert P. J. Day
ies the same thing? rday -- ============ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn: http://

[OCLUG-Tech] anyone have experience porting C# .NET app to linux?

2016-07-06 Thread Robert P. J. Day
just ducky. depending on the work involved, there might be some consulting work here, but i can't make that kind of promise. rday -- ======== Robert P. J. Day Ottawa, Ontar

[OCLUG-Tech] your morning entertainment -- linux torvalds and git keyword expansion

2016-06-01 Thread Robert P. J. Day
once upon a time, some poor sod submitted a patch to add keyword expansion to git ... unsurprisingly, it did not end well. http://thread.gmane.org/gmane.comp.version-control.git/44750/focus=44762 rday -- Robert P. J

Re: [OCLUG-Tech] anyone up for an OCLUG discussion on how to set up a linux dev environment?

2016-06-01 Thread Robert P. J. Day
be a better question would be, if you're a linux developer that's worked on various linux projects (particularly kernel or embedded based), what things would you have changed at your various contracts in order to be more productive? rday -- ==========

[OCLUG-Tech] anyone up for an OCLUG discussion on how to set up a linux dev environment?

2016-05-31 Thread Robert P. J. Day
post them. rday -- Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday Lin

[OCLUG-Tech] any thoughts on the deprecation of the "-I-" cpp search path option?

2016-05-28 Thread Robert P. J. Day
l header files, which strikes me as kind of a chaotic situation. perhaps there's a build environment design for which that makes sense, but it strikes me as completely unpredictable if others are allowed to make changes to header file override directories that will affect *your* build. thoughts? --

[OCLUG-Tech] a question for you device tree experts

2016-05-23 Thread Robert P. J. Day
to inherit/extend existing strings, wouldn't you think? or maybe not if you wanted to include a .dtsi file and explicitly *break* some compatibility. so i'm assuming there's nothing magic about the "compatible" node in that it doesn't automat

[OCLUG-Tech] simple test to see if a git repo is linked/references another local one?

2016-05-16 Thread Robert P. J. Day
one git repo's "dependence" on another? thanks muchly. rday -- ============ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter:

Re: [OCLUG-Tech] git question: how can i drop the n'th last commit?

2016-05-16 Thread Robert P. J. Day
they properly belonged elsewhere. is it just me, or do other people think this is a useful operation? and is there an even simpler way to do it? rday -- Robert P. J. Day Ottawa, Onta

[OCLUG-Tech] recommendations for spell-checking sizable source code base?

2016-05-16 Thread Robert P. J. Day
-- Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjday LinkedIn

Re: [OCLUG-Tech] git question: how can i drop the n'th last commit?

2016-05-10 Thread Robert P. J. Day
On Tue, 10 May 2016, Richard Guy Briggs wrote: > On 16/05/10, Robert P. J. Day wrote: > > SCENARIO: most recent 5 commits on a clean, linear history branch: > > > > ... X <--- A <--- B <--- C <--- D <--- E (HEAD) > > > > suddenly, i

[OCLUG-Tech] git question: how can i drop the n'th last commit?

2016-05-10 Thread Robert P. J. Day
if it originated at X; isn't that just a regular rebase? thoughts? rday -- ============ Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter:

[OCLUG-Tech] peoples' preference for git submodule/subtree/subdir?

2016-05-02 Thread Robert P. J. Day
nks muchly. rday -- ======== Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter: http://twitter.com/rpjda

[OCLUG-Tech] couple questions about git

2016-05-02 Thread Robert P. J. Day
've needed that particular bit of magic. likely more questions coming shortly ... rday -- Robert P. J. Day Ottawa, Ontario, CANADA http://crashcourse.ca Twitter:

Re: [OCLUG-Tech] Pure NFS 4 mounts

2016-04-11 Thread Robert P. J. Day
ople never bothered to test it because they still > like supporting insane things like NFS 3. i recall asking very much this question way back in 2013: http://marc.info/?t=13875500889&r=1&w=2 rday -- ================ R

[OCLUG-Tech] still confused about the use of (now obsolete) "-I-" option of gcc

2016-03-31 Thread Robert P. J. Day
the man page? rday p.s. can someone just reply to this email, to make sure my email is working properly? weird things have been happening so i just want to confirm things are getting out and being read. thank you kindly. -- ==

[OCLUG-Tech] looking for clarification of obsolescence of "-I-" option with gcc

2016-03-29 Thread Robert P. J. Day
e* set of high-priority directories that will be searched first before returning to the current directory. thoughts? i can see the options "-isystem" and "-isysroot", so i'm wondering if that's the solution. if there is another solution, feel free to let me know. r

[OCLUG-Tech] puzzled by something regarding labels in device tree source files

2016-03-01 Thread Robert P. J. Day
a minor curiosity about labels in DTS files ... as an example, let's pick on some powerpc 8544-related files under arch/powerpc/boot/dts/fsl, and show some snippets: mpc8544ds.dts: = /include/ "mpc8544si-pre.dtsi"< irrelevant / { model = "MPC8544DS"; co

[OCLUG-Tech] anyone local using atlassian products in an enterprise setting?

2016-02-10 Thread Robert P. J. Day
has anyone local set up a relatively full-featured development environment using products from atlassian? https://www.atlassian.com/ they have a ton of products but, from my perspective, i'm interested in anyone who's set up, minimally, bitbucket for version control, and jira for issue tracki

Re: [OCLUG-Tech] suggestions for M.2-format PCIe SSD drive for new laptop?

2016-02-01 Thread Robert P. J. Day
Quoting Spencer Cheng : On Jan 30, 2016, at 9:14, Robert P. J. Day wrote: (frighteningly, my new laptop has two slots ... oh, the temptation) It’s only money, right? :-) anyway, are there other sources i should be checking out? is that a reasonable price for that drive? and so on and

[OCLUG-Tech] suggestions for M.2-format PCIe SSD drive for new laptop?

2016-01-30 Thread Robert P. J. Day
now that i resolved the issue i was having with the M.2 SSD drive i bought for my new laptop (had SATA interface, laptop takes PCIe), any recommendations on such things, either locally or online? i know they're not going to be cheap -- PCIe interface seems to run about double the price of equ

Re: [OCLUG-Tech] trying to get my new ASUS laptop to see a M.2 SSD drive

2016-01-19 Thread Robert P. J. Day
Quoting Spencer Cheng : On Jan 19, 2016, at 7:51, Robert P. J. Day wrote: arrrggghhh ... never mind, spencer cheng asked the right question, as in what interface it uses. the laptop has PCIe slots, but the SSD uses a SATA III interface. can't believe i didn't notice that, bu

  1   2   3   4   5   6   >