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
Shortcut Description | |
--------------------------------------------------------------- | |
C-o Drop to the console | |
Insert Select/deselect file | |
* Invert selection on files | |
+ Specify file selection options (including custom pattern) | |
- The same as above, but for deselecting | |
F5/F6 Copy/move selected files |
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
"""Subscript extension for Markdown. | |
To subscript something, place a tilde symbol, '~', before and after the | |
text that you would like in subscript: C~6~H~12~O~6~ | |
The numbers in this example will be subscripted. See below for more: | |
Examples: | |
>>> import markdown | |
>>> md = markdown.Markdown(extensions=['subscript']) |
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 BEER-WARE LICENSE" (Revision 42): | |
* <[email protected]> wrote this file. As long as you retain this notice you | |
* can do whatever you want with this stuff. If we meet some day, and you think | |
* this stuff is worth it, you can buy me a beer in return. D. Weymouth 4/2014 | |
* ---------------------------------------------------------------------------- | |
*/ | |
import java.io.*; |
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
Type: Trace | |
Time stamp: 2014-01-20 09:23:01.910 CET | |
Trace key: 46702000029 | |
Source: pf-Cluster=tsmr,pf-Host=tsmr1,pf-Node=tsmr1,map-Layer=map@tsmr1 | |
Trace: | |
-- 0, platform: Context info: StructuredDialogue | |
Origination address : {SccpUserAddress: RoutingIndicator=ROUTE_ON_GT, SignallingPointCode=null, SubsystemNumber=8, GlobalTitle={GlobalTitle: GtIndicator=INDICATOR_0100, TranslationType=0, {QualifiedDigits: NumberPlan=MSISDN, NumberType=INTERNATIONAL, Digits=461000301}}} | |
Destination address : {SccpUserAddress: RoutingIndicator=ROUTE_ON_GT, SignallingPointCode=null, SubsystemNumber=8, GlobalTitle={GlobalTitle: GtIndicator=INDICATOR_0100, TranslationType=0, {QualifiedDigits: NumberPlan=MSISDN, NumberType=INTERNATIONAL, Digits=461000101}}} | |
TC-BEGIN ind |
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
import ch.qos.logback.classic.LoggerContext; | |
import ch.qos.logback.classic.spi.ILoggingEvent; | |
import ch.qos.logback.core.Appender; | |
import ch.qos.logback.core.Layout; | |
import com.fasterxml.jackson.annotation.JsonProperty; | |
import com.fasterxml.jackson.annotation.JsonTypeName; | |
import com.tapstream.rollbar.RollbarAppender; | |
import io.dropwizard.logging.AbstractAppenderFactory; | |
import javax.validation.constraints.NotNull; |
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"?> | |
<?xml-stylesheet href='CoverageReport.xsl' type='text/xsl'?> | |
<!-- Generated by NCoverExplorer url=http://www.kiwidude.com/blog/ --> | |
<coverageReport reportTitle="Module Class Summary" date="Fri 15-Jun-2007" time="10:49:14" version="1.3.6.32"> | |
<project name="Atmosphere Processor::LV426" files="31" classes="34" members="541" nonCommentLines="4450" sequencePoints="4460" unvisitedPoints="1321" unvisitedFunctions="152" coverage="70.3811646" acceptable="80" functionCoverage="71.9038849" acceptableFunction="80" filteredBy="None" sortedBy="Name"> | |
<coverageFiles> | |
<coverageFile>C:\Program Files\NAnt\0.85\bin\Coverage.xml</coverageFile> | |
</coverageFiles> | |
</project> | |
<modules> |
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
using System; | |
using System.Collections.Generic; | |
using System.Runtime.InteropServices; | |
namespace DnsMarshallingTest | |
{ | |
#region Data structures | |
[Flags] | |
internal enum DnsRecordType : ushort |
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
var rawSites = { | |
'programming': [ | |
'http://blog.codinghorror.com/', | |
'http://thedailywtf.com/', | |
'http://www.hanselman.com/blog/', | |
'http://code.tutsplus.com', | |
'https://news.ycombinator.com/', | |
'http://www.reddit.com/r/programming/', | |
'http://codebetter.com', | |
'http://android-developers.blogspot.com/', |
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/sh | |
# Converts a mysqldump file into a Sqlite 3 compatible file. It also extracts the MySQL `KEY xxxxx` from the | |
# CREATE block and create them in separate commands _after_ all the INSERTs. | |
# Awk is choosen because it's fast and portable. You can use gawk, original awk or even the lightning fast mawk. | |
# The mysqldump file is traversed only once. | |
# Usage: $ ./mysql2sqlite mysqldump-opts db-name | sqlite3 database.sqlite | |
# Example: $ ./mysql2sqlite --no-data -u root -pMySecretPassWord myDbase | sqlite3 database.sqlite |
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"?> | |
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Start"> | |
<Import Project="lib\MSBuildCommunityTasks\MSBuild.Community.Tasks.Targets" /> | |
<!-- Variables --> | |
<PropertyGroup> | |
<!-- Release Folder --> | |
<!-- To change the output folder, use the following parameter: /p:BuildDir=C:\BuildTest--> |