<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 08:08:19 +0000</lastBuildDate>
    <item>
      <title>(JavaScript) KickApps: rewrite media play page flash wmode - krunkosaurus</title>
      <link>https://snipplr.com/view/18802/kickapps-rewrite-media-play-page-flash-wmode</link>
      <description>&lt;p&gt;Wrap in script tags and place at the bottom of your AC.&lt;/p&gt;</description>
      <pubDate>Mon, 24 Aug 2009 21:12:09 UTC</pubDate>
      <guid>https://snipplr.com/view/18802/kickapps-rewrite-media-play-page-flash-wmode</guid>
    </item>
    <item>
      <title>(Bash) Copy your SSH key to remote machine - krunkosaurus</title>
      <link>https://snipplr.com/view/16004/copy-your-ssh-key-to-remote-machine</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 16 Jun 2009 16:04:08 UTC</pubDate>
      <guid>https://snipplr.com/view/16004/copy-your-ssh-key-to-remote-machine</guid>
    </item>
    <item>
      <title>(JavaScript) KickApps: Cutomize TinyMCE buttons and more! - krunkosaurus</title>
      <link>https://snipplr.com/view/14812/kickapps-cutomize-tinymce-buttons-and-more</link>
      <description>&lt;p&gt;The KickApps platform comes preloaded with a default set of buttons in your rich-text editor but you can customize your own set of buttons with a few lines of JavaScript - either for all rich-text areas or per page. &#13;
&#13;
The example #1 here changes the rich-text editor buttons for just the add-blog page to have other options such as font-selection. (Wrap it in script tags and place in your AC header.)&#13;
&#13;
A full list of button options can be found here (first column only):&#13;
&lt;a href="http://wiki.moxiecode.com/index.php/TinyMCE:Control_reference"&gt;http://wiki.moxiecode.com/index.php/TinyMCE:Control_reference&lt;/a&gt;&#13;
&#13;
For the advanced users wanting to access plugins in the second and third column of the above link, you need to append the plugin name to the variable Ka.Settings.tinyMCE.plugins.&#13;
&#13;
You can also specify up to three rows of buttons by editing the variables &lt;code&gt;Ka.Settings.tinyMCE.theme_advanced_buttons2&lt;/code&gt; and &lt;code&gt;Ka.Settings.tinyMCE.theme_advanced_buttons3&lt;/code&gt;.&#13;
&#13;
Default values of all variables are:&lt;br&gt;&#13;
&lt;code&gt;Ka.Settings.tinyMCE.theme_advanced_buttons1 = "bold,italic,link,unlink,forecolor,backcolor,bullist,numlist,hr,blockquote,charmap,code,emotions,kickmedia";&lt;/code&gt;&lt;br&gt;&#13;
&lt;code&gt;Ka.Settings.tinyMCE.theme_advanced_buttons2 = '';&lt;/code&gt;&lt;br&gt;&#13;
&lt;code&gt;Ka.Settings.tinyMCE.theme_advanced_buttons3 = '';&lt;/code&gt;&#13;
&#13;
&lt;code&gt;Ka.Settings.tinyMCE.plugins = "kickmedia,emotions,media";&lt;/code&gt;&#13;
&#13;
Other editable values:&lt;br&gt;&#13;
&lt;code&gt;Ka.Settings.tinyMCE.defaultHeight&lt;/code&gt;&lt;br&gt;&#13;
&lt;code&gt;Ka.Settings.tinyMCE.resizingMinHeight&lt;/code&gt;&lt;br&gt;&#13;
&lt;code&gt;Ka.Settings.tinyMCE.resizingMaxHeight&lt;/code&gt;&#13;
&#13;
&lt;strong&gt;Note:&lt;/strong&gt; For security reasons, most but not all plugins from the &lt;a href="http://wiki.moxiecode.com/index.php/TinyMCE:Control_reference"&gt;full plugin list&lt;/a&gt; will work on the KickApps platform.&#13;
&#13;
--&lt;br&gt;&#13;
For more tips and tricks checkout the &lt;a href="http://www.kickdeveloper.com/resources"&gt;KickApps resources page&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Thu, 07 May 2009 13:40:38 UTC</pubDate>
      <guid>https://snipplr.com/view/14812/kickapps-cutomize-tinymce-buttons-and-more</guid>
    </item>
    <item>
      <title>(JavaScript) KickApps: Add join group to groups list page - krunkosaurus</title>
      <link>https://snipplr.com/view/14767/kickapps-add-join-group-to-groups-list-page</link>
      <description>&lt;p&gt;For a way to add quick "join group" functionality to your group list page - put this code in your AC footer (wrapped in script tags).&#13;
&#13;
--&lt;br&gt;&#13;
For more tips and tricks checkout the &lt;a href="http://www.kickdeveloper.com/resources"&gt;KickApps resources page&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Wed, 06 May 2009 09:58:51 UTC</pubDate>
      <guid>https://snipplr.com/view/14767/kickapps-add-join-group-to-groups-list-page</guid>
    </item>
    <item>
      <title>(JavaScript) jQuery bookmarklet: find duplicate ID's on the page - krunkosaurus</title>
      <link>https://snipplr.com/view/14717/jquery-bookmarklet-find-duplicate-ids-on-the-page</link>
      <description>&lt;p&gt;&lt;a href="javascript:(function(){var%20ids=[];jQuery('*').each(function(){if(this.id&amp;&amp;this.id!==''){if(ids[this.id]){console.log('duplicate%20id%20found:%20'+this.id,this,ids[this.id])}else{ids[this.id]=this}}});})();"&gt;Find duplicate IDs&lt;/a&gt; (drag me to your tookbar).&#13;
&#13;
Requires Firebug and jQuery on the page.&lt;/p&gt;</description>
      <pubDate>Mon, 04 May 2009 18:10:33 UTC</pubDate>
      <guid>https://snipplr.com/view/14717/jquery-bookmarklet-find-duplicate-ids-on-the-page</guid>
    </item>
    <item>
      <title>(JavaScript) KickApps: raise the minimum age to signup on your KickApps community - krunkosaurus</title>
      <link>https://snipplr.com/view/12750/kickapps-raise-the-minimum-age-to-signup-on-your-kickapps-community</link>
      <description>&lt;p&gt;Here's a quick snippet of code to raise the minimum age of your site. Note that it is illegal to lower the legal age of your site under 13.&#13;
&#13;
Legal Disclaimer: Affiliate shall indemnify and hold KickApps, its licensors and each such party's parent organizations, subsidiaries, affiliates, officers, directors, employees, attorneys and agents harmless from and against any and all claims, costs, damages, losses, liabilities and expenses (including attorneys' fees and costs) arising out of or in connection with a breach of COPPA laws, including without limitation any claim alleging that Affiliate or Affiliate Website is in breach of COPPA laws due to Affiliateâ€™s use of the Service&#13;
&#13;
For more information see: http://www.coppa.org/coppa.htm&lt;/p&gt;</description>
      <pubDate>Tue, 03 Mar 2009 01:07:08 UTC</pubDate>
      <guid>https://snipplr.com/view/12750/kickapps-raise-the-minimum-age-to-signup-on-your-kickapps-community</guid>
    </item>
    <item>
      <title>(JavaScript) KickApps: Make a photo required during signup - krunkosaurus</title>
      <link>https://snipplr.com/view/11818/kickapps-make-a-photo-required-during-signup</link>
      <description>&lt;p&gt;Just add this in script tags in your Affiliate Center footer:&#13;
&#13;
--&lt;br&gt;&#13;
For more tips and tricks checkout the &lt;a href="http://www.kickdeveloper.com/resources"&gt;KickApps resources page&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Wed, 04 Feb 2009 03:09:17 UTC</pubDate>
      <guid>https://snipplr.com/view/11818/kickapps-make-a-photo-required-during-signup</guid>
    </item>
    <item>
      <title>(JavaScript) KickApps: Adding classes to the leave / join button on the groups page. - krunkosaurus</title>
      <link>https://snipplr.com/view/11258/kickapps-adding-classes-to-the-leave--join-button-on-the-groups-page</link>
      <description>&lt;p&gt;Sometime, you need unique classes on the leave join button of the groups page. Place this script in your AC footer.&#13;
&#13;
--&lt;br&gt;&#13;
For more tips and tricks checkout the &lt;a href="http://www.kickdeveloper.com/resources"&gt;KickApps resources page&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Fri, 16 Jan 2009 17:21:41 UTC</pubDate>
      <guid>https://snipplr.com/view/11258/kickapps-adding-classes-to-the-leave--join-button-on-the-groups-page</guid>
    </item>
    <item>
      <title>(JavaScript) Move modules around on your KickApps powered site - krunkosaurus</title>
      <link>https://snipplr.com/view/10742/move-modules-around-on-your-kickapps-powered-site</link>
      <description>&lt;p&gt;In this example below I am moving the "recent blogs" module in "My Home" to the very top. I have placed this code in the footer of my Affiliate Center wrapped in script tags.&#13;
&#13;
For maximum efficiency:&#13;
1) Use the inspect tool in Firebug to find the main container you want to move (the element that's wrapping around the content you want to move). &#13;
&#13;
2) Find the ID of the element you want to insert into, after, or before.&#13;
&#13;
3) Write your code like below. Instead of using .insertBefore, you can use any of the options on this page under "insert outside" and "insert inside": http://docs.jquery.com/Manipulation#bodyContent&#13;
&#13;
4) Don't forget to wrap your code around an if statement to target the specific page(s) only so that your code doesn't run on your other KickApps pages.&#13;
&#13;
--&lt;br&gt;&#13;
For more tips and tricks checkout the &lt;a href="http://www.kickdeveloper.com/resources"&gt;KickApps resources page&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Mon, 29 Dec 2008 12:33:35 UTC</pubDate>
      <guid>https://snipplr.com/view/10742/move-modules-around-on-your-kickapps-powered-site</guid>
    </item>
    <item>
      <title>(JavaScript) Faux community privacy for your KickApps community - krunkosaurus</title>
      <link>https://snipplr.com/view/10739/faux-community-privacy-for-your-kickapps-community</link>
      <description>&lt;p&gt;This is a basic script that will redirect a non-member to the login page with a custom message. Place the code between script tags in your Affiliate Center header.&#13;
&#13;
To use:&#13;
1) replace loginPage variable with your *login URL.&#13;
&#13;
2) replace accessMessage variable with your custom message.&#13;
&#13;
*If you're current login URL does not contain a query string (?) you should change '&amp;a=nonmember' inside newLogin variable to '?a=nonmember'.&#13;
&#13;
Note that real community privacy for KickApps is on the way and this method should be considered transitional -- it can be circumvented by simply disabling JavaScript before visiting your site.&#13;
&#13;
--&lt;br&gt;&#13;
For more tips and tricks checkout the &lt;a href="http://www.kickdeveloper.com/resources"&gt;KickApps resources page&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Mon, 29 Dec 2008 11:41:46 UTC</pubDate>
      <guid>https://snipplr.com/view/10739/faux-community-privacy-for-your-kickapps-community</guid>
    </item>
    <item>
      <title>(JavaScript) How to distinguish KickApp's list pages via JavaScript - krunkosaurus</title>
      <link>https://snipplr.com/view/10737/how-to-distinguish-kickapps-list-pages-via-javascript</link>
      <description>&lt;p&gt;Use the Ka.Util.getLocationParam utility method to get the mediaType GET parameter:&#13;
&#13;
--&lt;br&gt;&#13;
For more tips and tricks checkout the &lt;a href="http://www.kickdeveloper.com/resources"&gt;KickApps resources page&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Mon, 29 Dec 2008 10:39:16 UTC</pubDate>
      <guid>https://snipplr.com/view/10737/how-to-distinguish-kickapps-list-pages-via-javascript</guid>
    </item>
  </channel>
</rss>
