Skip to content

Instantly share code, notes, and snippets.

@pvik
pvik / userContent.css
Created September 11, 2018 22:53
Firefox Customization - userContent.css
@-moz-document regexp("moz-extension://.+/resources/group-tab.html.*") {
:root {
background: #bbc2cf;
}
}
@pvik
pvik / userChrome.css
Created September 11, 2018 22:52
Firefox Customization - userChrome.css
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* to hide the native tabs */
#TabsToolbar {
visibility: collapse;
}
/* to hide the sidebar header */
#sidebar-header {
visibility: collapse;
@pvik
pvik / tree-style-tab.css
Created September 11, 2018 22:50
Firefox Tree Style Tab Customization
/* tab height */
:root {
--tab-height: 22px !important;
background-color: #000000;
}
.tab {
height: var(--tab-height) !important;
background: #4d4e51;
color: #bbc2cf;
@pvik
pvik / gist:56c3c3a3ea655bee8aae
Created December 27, 2015 23:02
Plotting a CSV file
gnuplot> set datafile separator ","
gnuplot> plot 'calls.csv' using 2:xticlabels(1) with lines
@pvik
pvik / adding ms sqlserver jar to maven
Last active August 29, 2015 14:28
sqlserver_mvn.md
taken from [here]{http://claude.betancourt.us/add-microsoft-sql-jdbc-driver-to-maven/}
```
mvn install:install-file -Dfile=sqljdbc4.jar -Dpackaging=jar -DgroupId=com.microsoft.sqlserver -DartifactId=sqljdbc4 -Dversion=4.0
```
POM:
```
<dependency>
<groupId>com.microsoft.sqlserver</groupId>