This file contains hidden or 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
| #cVim-link-container, .cVim-link-hint, #cVim-command-bar, #cVim-command-bar-mode, #cVim-command-bar-input, #cVim-command-bar-search-results, .cVim-completion-item, .cVim-completion-item .cVim-full, .cVim-completion-item .cVim-left, .cVim-completion-item .cVim-right, #cVim-hud, #cVim-status-bar { | |
| font-family: Helvetica, Helvetica Neue, Neue, sans-serif, monospace, Arial; | |
| font-size: 10pt !important; | |
| -webkit-font-smoothing: antialiased !important; | |
| } | |
| #cVim-link-container { | |
| position: absolute; | |
| pointer-events: none; | |
| width: 100%; left: 0; |
This file contains hidden or 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
| var http = require('http'); | |
| var stdin = process.openStdin(); | |
| const PORT = 8080; | |
| function handleRequest(request, response) { | |
| console.log('Incoming request...'); | |
| body = ''; | |
| request.on('data', function(chunk) { | |
| body += chunk; | |
| }); |
This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using System.Text.RegularExpressions; | |
| using CrystalDecisions.CrystalReports.Engine; | |
| using CrystalDecisions.Shared; | |
| using SSSWorld.Common; | |
| using System.IO; |
This file contains hidden or 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
| .image-container { | |
| width: 100%; | |
| position: relative; | |
| } | |
| figure { | |
| transition: left 0.5s, top 0.5s, width 0.5s, height 0.5s; | |
| } | |
| figure img { |
This file contains hidden or 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
| function closeLightbox() { | |
| $('.pledge_dialog_overlay').remove(); | |
| } | |
| function centerDialog(content) { | |
| var height = content.height(); | |
| var winHeight = $(window).height(); | |
| var spacing = Math.max(0, (winHeight - height) / 2); | |
| var top = $(window).scrollTop() + spacing; | |
| // in case there is a header bar... try to find where the content starts |
This file contains hidden or 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
| import sys, os, errno | |
| from subprocess import call | |
| HOSTS_FILE = "C:\\Windows\\System32\\drivers\\etc\hosts" | |
| VHOSTS_FILE = "C:\\wamp\\bin\\apache\\apache2.4.9\\conf\\extra\\httpd-vhosts.conf" | |
| WAMP_ROOT = "C:\\wamp\\www" | |
| APACHE_SERVICE_NAME = "wampapache64" | |
| def add_host_name(hostname): | |
| text = "127.0.0.1 %(hostname)s %(hostname)s.local\n" % \ |
This file contains hidden or 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
| <?php | |
| function generate_salt($length) { | |
| $seed = 'abcdefghijklmnopqrstuvwxyz' | |
| .'ABCDEFGHIJKLMNOPQRSTUVWXYZ' | |
| .'0123456789!@#$%^&*()"'; // and any other characters | |
| $rand = substr(str_shuffle(str_repeat($seed, $length)), 0, $length); | |
| return $rand; | |
| } |
This file contains hidden or 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
| <form enctype="multipart/form-data" method="POST"> | |
| <input type="file" name="upload"/> | |
| <input type="submit" value="Submit"/> | |
| </form> | |
| <?php | |
| $uploads_dir = "uploads/"; | |
| if($_SERVER['REQUEST_METHOD'] == 'POST'){ | |
| if(move_uploaded_file($_FILES['upload']['tmp_name'], $uploads_dir . basename($_FILES['upload']['name']))){ |
This file contains hidden or 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
| <%@ Control Language="C#" AutoEventWireup="true" CodeFile="QuickSearch.ascx.cs" Inherits="SmartParts_Contact_QuickSearch" %> | |
| <%@ Register Assembly="Sage.SalesLogix.Web.Controls" Namespace="Sage.SalesLogix.Web.Controls.PickList" TagPrefix="SalesLogix" %> | |
| <%@ Register Assembly="Sage.SalesLogix.Web.Controls" Namespace="Sage.SalesLogix.Web.Controls" TagPrefix="SalesLogix" %> | |
| <%@ Register Assembly="Sage.SalesLogix.Web.Controls" Namespace="Sage.SalesLogix.Web.Controls.Lookup" TagPrefix="SalesLogix" %> | |
| <%@ Register Assembly="Sage.SalesLogix.HighLevelTypes" Namespace="Sage.SalesLogix.HighLevelTypes" TagPrefix="SalesLogix" %> | |
| <style type="text/css"> | |
| .date input { | |
| width: 7em; | |
| } |
This file contains hidden or 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
| /* Custom style scheme for InforCRM */ | |
| /* Using #EB6800 as primary color */ | |
| /* Using #E37221 as link color */ | |
| .dijitTab, | |
| .dijitTab .dijitTabInnerDiv, | |
| .dijitTabListWrapper, | |
| #MainHeader, | |
| #titlePane, |