# Bootstrap 4
npm install --save-dev [email protected]
# Node SASS & other loaders needed to handle styles
npm install --save-dev css-loader node-sass resolve-url-loader sass-loader style-loader url-loader postcss-loader
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Tomcat 7 start/stop/status script | |
# Forked from: https://gist.github.com/valotas/1000094 | |
# @author: Miglen Evlogiev <[email protected]> | |
# | |
# Release updates: | |
# Updated method for gathering pid of the current proccess | |
# Added usage of CATALINA_BASE | |
# Added coloring and additional status |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.filter('titlecase', function() { | |
return function(input, scope) { | |
var result =''; | |
if (input != null && input != undefined){ | |
var words = input.split(' '); | |
for(var i=0;i<words.length; i++){ | |
result = result.concat(words[i].substring(0,1).toUpperCase() + words[i].substring(1)+' '); | |
} | |
} | |
return result; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Namespace */ | |
var ProTag = (function() { | |
var dpiId = eval('__dpi' + new Date().getTime()); | |
$('<div id="test" > </div>').appendTo('body'); | |
$('<div id="'+dpiId+'" style="width:1in;height: 1in;display: none;"></div>').appendTo('body'); | |
var dpi = $('#'+dpiId).width(); | |
$('#'+dpiId).remove(); | |
return { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is the .slate file for sinb-56-001 and samsung 22" | |
config defaultToCurrentScreen true | |
config nudgePercentOf screenSize | |
config resizePercentOf screenSize | |
config windowHintsIgnoreHiddenWindows false | |
# Monitor Aliases | |
# Find your config from System >Preferences >Display >Resolution >Scaled | |
alias mon-laptop 1280x800 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Specifies intentionally untracked files to ignore when using Git | |
# http://git-scm.com/docs/gitignore | |
*~ | |
*.sw[mnpcod] | |
*.log | |
*.tmp | |
*.tmp.* | |
log.txt | |
*.sublime-project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set the default behavior, in case people don't have core.autocrlf set. | |
* text=auto | |
# Explicitly declare text files you want to always be normalized and converted | |
# to native line endings on checkout. | |
*.c eol=crlf | |
*.h eol=crlf | |
*.cpp eol=crlf | |
*.rc eol=crlf | |
*.vcproj eol=crlf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='utf-8'?> | |
<!-- The contents of this file will be loaded for each web application --> | |
<!-- this file placed under TOMCAT6_HOME/conf/Catalina/localhost/ --> | |
<Context path="/FOO" reloadable="false" docBase="FOO" > | |
<Resource auth="Container" name="jdbc/FOODB" | |
type="javax.sql.DataSource" driverClassName="oracle.jdbc.OracleDriver" | |
password="foobar" maxIdle="8" maxWait="15000" maxActive="16" | |
removeAbandoned="true" validationQuery="select 1 from dual" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The MIT License (MIT) | |
Copyright (c) 2015 Justin Perry | |
Permission is hereby granted, free of charge, to any person obtaining a copy of | |
this software and associated documentation files (the "Software"), to deal in | |
the Software without restriction, including without limitation the rights to | |
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
the Software, and to permit persons to whom the Software is furnished to do so, | |
subject to the following conditions: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.fontFamily": "Inconsolata", | |
"editor.fontWeight": "normal", | |
"editor.fontSize": 14, | |
"editor.lineHeight": 0, | |
"editor.insertSpaces": true, | |
"editor.rulers": [ | |
120, | |
200 |
OlderNewer