Skip to content

Instantly share code, notes, and snippets.

@bugsysop
bugsysop / .gitignore
Created August 20, 2011 16:26 — forked from Fil/.gitignore
Outil pour créer une copie locale statique de "mes" seens
# ma config
seen-local-config.php
# stockage de mon backup xml
tmp/
# mes fichiers exportes
seen/
# mac os x
@bugsysop
bugsysop / menu.xml
Created April 6, 2012 21:53
Openbox menu file - Fichier de configuration pour le menu Openbox
<?xml version="1.0" encoding="UTF-8"?>
<openbox_menu xmlns="http://openbox.org/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://openbox.org/
file:///usr/share/openbox/menu.xsd">
<!-- after modification run the "reconfigure" command for openbox -->
<menu id="root-menu" label="Openbox 3">
@bugsysop
bugsysop / style.css
Created June 3, 2012 04:23
h5ai (0.20) unminified style sheet
*/
* h5ai 0.21
*/
article,
aside,
details,
figcaption,
figure,
footer,
@bugsysop
bugsysop / RecordFindChange_CS3-CS5.jsx
Created June 18, 2012 03:32
An InDesign CS3--CS5 JavaScript. Writes the current find/change preferences to a text file so that you can copy/paste them into a find/change list file.
// RecordFindChange_CS3-CS5.jsx
//
// An InDesign CS3--CS5 JavaScript
// Writes the current find/change preferences to a text file so that
// you can copy/paste them into a find/change list file.
// Kasyan Servetsky - http://kasyan.ho.com.ua/scripts_by_categories.html
String.prototype.cleanProps = function ()
{
@bugsysop
bugsysop / tw-bootstrap-template.html
Created July 9, 2012 08:25
Twitter Bootstrap Template
<!--
Twitter Bootstrap Template
Original Source : RocketCat - http://pastebin.com/u/RocketCat
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@bugsysop
bugsysop / tw-bootstrap-carousel.html
Created July 9, 2012 08:27
Twitter Bootstrap - JS Carousel
@bugsysop
bugsysop / tw-bootstrat-tabs.html
Created July 9, 2012 08:31
Twitter bootstrap - JS Tabs
<!--Example js tabs without dropdown. Just copy and paste in a html (bootstrap) file. Should be working. -->
<ul id="myTab" class="nav nav-tabs">
<li class="active"><a href="#home" data-toggle="tab">Facebook</a></li>
<li><a href="#profile" data-toggle="tab">Google+</a></li>
</ul>
<!--Some text for content-->
<div id="myTabContent" class="tab-content">
@bugsysop
bugsysop / tw-bootstrat-modal.html
Created July 9, 2012 08:32
Twitter Bootstrap - JS Modal Window
<!--Javascript modal window in Twitter Bootstrap-->
<div id="myModal" class="modal hide fade">
<div class="modal-header">
<button class="close" data-dismiss="modal">&times;</button>
<h3>Modal Heading</h3>
</div>
<div class="modal-body">
<h4>Text in a modal</h4>
</div>
@bugsysop
bugsysop / tw-bootstrat-tooltip.html
Created July 9, 2012 08:34
Twitter Bootstrap - JS Tooltip
<p><a href="#" rel="tooltip" title="first tooltip">Tooltip example</a></p>
<!-- If do not working, check all your paths to javascript files. -->
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
<script src="assets/js/jquery.js"></script>
<script src="assets/js/bootstrap-transition.js"></script>
<script src="assets/js/bootstrap-alert.js"></script>
@bugsysop
bugsysop / tw-bootstrat-alerts.html
Created July 9, 2012 09:52
Twitter Bootstrap - JS Alerts
<!--Yellow block-->
<div class="alert fade in">
<button class="close" data-dismiss="alert">&times;</button>
<strong>Holy guacamole!</strong> Best check yo self, you're not looking too good.
</div>
<!--Green block-->
<div class="alert alert-success fade in">
<button class="close" data-dismiss="alert">&times;</button>
<strong>User1</strong> send you message
</div>