Comments for Code from the sideline https://sideshowcoder.com Fri, 14 Jul 2023 00:23:47 +0000 hourly 1 http://wordpress.com/ Comment on Get Wireshark to recognize the Networkinterfaces on MacOSX by Reagan B https://sideshowcoder.com/2010/09/05/1069805858/comment-page-1/#comment-1789 Fri, 14 Jul 2023 00:23:47 +0000 http://sideshowcoder.com/post/1069805858#comment-1789 Great blog I eenjoyed reading

Like

]]>
Comment on MySQL Gem 2.8.1 on MacOSX Lion by Daniel Calatayud https://sideshowcoder.com/2012/02/25/18243187277/comment-page-1/#comment-1776 Tue, 23 May 2023 01:19:21 +0000 http://sideshowcoder.com/post/18243187277#comment-1776 This is a great poost thanks

Like

]]>
Comment on My experience in getting my AWS Solutions Architect Professional certification by Bobbi M https://sideshowcoder.com/2019/11/11/my-experience-in-getting-my-aws-solutions-architect-professional-certification/comment-page-1/#comment-1487 Tue, 31 Jan 2023 18:52:04 +0000 http://sideshowcoder.com/?p=1132#comment-1487 This is a great post thhanks

Like

]]>
Comment on Networking with NodeJS @munichjs by Cody https://sideshowcoder.com/2011/05/05/5216315569/comment-page-1/#comment-1427 Mon, 13 Jun 2022 01:31:48 +0000 http://sideshowcoder.com/post/5216315569#comment-1427 Thanks for sharing thiss

Like

]]>
Comment on Sugarsync, Dropbox, and others by Vincent Griffin https://sideshowcoder.com/2010/09/05/1069831210/comment-page-1/#comment-1365 Thu, 14 Oct 2021 17:47:56 +0000 http://sideshowcoder.com/post/1069831210#comment-1365 Nicee blog post

Like

]]>
Comment on Updated Dropbox Dropzone to handle folders as well by sideshowcoder https://sideshowcoder.com/2010/09/05/1069869535/comment-page-1/#comment-1158 Wed, 17 Feb 2021 09:13:04 +0000 http://sideshowcoder.com/post/1069869535#comment-1158 In reply to ap.

I have not been using Dropzone in a while so I haven’t updated the script. I think the author of dropzone initially took it on but I’m not sure if they are still working on it, sorry about that.

Like

]]>
Comment on Updated Dropbox Dropzone to handle folders as well by sideshowcoder https://sideshowcoder.com/2010/09/05/1069869535/comment-page-1/#comment-1157 Wed, 17 Feb 2021 09:11:24 +0000 http://sideshowcoder.com/post/1069869535#comment-1157 In reply to ap.

I have not been using dro

Like

]]>
Comment on Updated Dropbox Dropzone to handle folders as well by ap https://sideshowcoder.com/2010/09/05/1069869535/comment-page-1/#comment-1156 Fri, 12 Feb 2021 15:11:17 +0000 http://sideshowcoder.com/post/1069869535#comment-1156 greetings, is there a current version of dropbox for dropzone 4 ? your great tool seams not to be available at the moment… a hint on where to look is highly appreciated. thanks, ap,

Like

]]>
Comment on Projectile and TRAMP by Xinfa Tang https://sideshowcoder.com/2017/10/24/projectile-and-tramp/comment-page-1/#comment-627 Fri, 12 Jul 2019 10:10:44 +0000 http://sideshowcoder.com/?p=1091#comment-627 It looks like “projectile-on” method is not exists in curent version of projectile, we can add advice on “projectile-project-root” function instead:

(defun my/ad-projectile-project-root (orig-fun &optional dir)
“This should disable projectile when visiting files with ftp tramp.”
(let ((dir (file-truename (or dir default-directory))))
(unless (file-remote-p dir)
(funcall orig-fun dir))))
(advice-add ‘projectile-project-root :around #’my/ad-projectile-project-root)

Like

]]>
Comment on Projectile and TRAMP by sideshowcoder https://sideshowcoder.com/2017/10/24/projectile-and-tramp/comment-page-1/#comment-628 Fri, 12 Jul 2019 09:15:45 +0000 http://sideshowcoder.com/?p=1091#comment-628 ]]> In reply to Xinfa Tang.

projectile-project-root makes sense I think. 👍

Like

]]>