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
class MyConverter(Converter): | |
""" | |
Convert .txt files extracted from SAP. | |
""" | |
COLUMNS = ('date', 'account', 'value', 'user', 'text') | |
DELIMITER = '|' | |
name =_('TIM SAP - Layout /FCORREA') |
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 url(http://www.w3.org/1999/xhtml); | |
@-moz-document url("http://www.ape-project.org/demos/6/tcpsocket-demo-irc.html") { | |
html { background-color:#333333; } | |
body { background-image:none !important; height:600px !important; } | |
div#content { background-color:#333333; } | |
#header, #breadcrump, .white_box_body .gdemo, .embed_this, .small_txt, #footer { display: none; } | |
pre.msg_text { width:600px !important; } | |
#history .msg_line { font-size:11px !important; } | |
#history .msg_line |
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
$.ajax({ | |
type: 'GET', | |
url: document.location, | |
data: {}, | |
contentType: "application/json; charset=utf-8", | |
dataType: "json", | |
success: function(fetched) { | |
$.each($('body#grid ul.messagelist li'), function(i, e) { | |
$(e).hide().fadeOut(); | |
}); |
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
Option Compare Database | |
Public Sub DoImport(fileName As String) | |
DoCmd.TransferText acImportDelim, "ImportaTrafegoPre", "Import", fileName, True | |
End Sub | |
Function getFileName(Optional save As Boolean = False) As String | |
Dim fDialog As Object | |
Dim title As String |
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
function number_format (number, decimals, dec_point, thousands_sep) { | |
// http://kevin.vanzonneveld.net | |
// + original by: Jonas Raoni Soares Silva (http://www.jsfromhell.com) | |
// + improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) | |
// + bugfix by: Michael White (http://getsprink.com) | |
// + bugfix by: Benjamin Lupton | |
// + bugfix by: Allan Jensen (http://www.winternet.no) | |
// + revised by: Jonas Raoni Soares Silva (http://www.jsfromhell.com) | |
// + bugfix by: Howard Yeend | |
// + revised by: Luke Smith (http://lucassmith.name) |
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
# Wrapper module for _socket, providing some additional facilities | |
# implemented in Python. | |
"""\ | |
This module provides socket operations and some related functions. | |
On Unix, it supports IP (Internet Protocol) and Unix domain sockets. | |
On other systems, it only supports IP. Functions specific for a | |
socket are available as methods of the socket object. | |
Functions: |
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
(sandbox) C:\projects\sandbox>epio create -e [email protected] | |
Traceback (most recent call last): | |
File "C:\virtual\grapher\Scripts\epio-script.py", line 8, in <module> | |
load_entry_point('epio==0.3.1', 'console_scripts', 'epio')() | |
File "C:\virtual\grapher\lib\site-packages\epio\__init__.py", line 161, in main | |
CommandLineClient(sys.argv).execute() | |
File "C:\virtual\grapher\lib\site-packages\epio\__init__.py", line 157, in execute | |
self.fetch_command(subcommand).run_from_argv(self.argv) | |
File "C:\virtual\grapher\lib\site-packages\epio\commands\__init__.py", line 86, in run_from_argv | |
self.handle(*args, **options.__dict__) |
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
"%% SiSU Vim color file | |
" Slate Maintainer: Ralph Amissah <[email protected]> | |
" (originally looked at desert Hans Fugal <[email protected]> http://hans.fugal.net/vim/colors/desert.vim (2003/05/06) | |
:set background=dark | |
:highlight clear | |
if version > 580 | |
hi clear | |
if exists("syntax_on") | |
syntax reset | |
endif |
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
" Vim color scheme | |
" | |
" Name: railscasts.vim | |
" Maintainer: Nick Moffitt <[email protected]> | |
" Last Change: 01 Mar 2008 | |
" License: WTFPL <http://sam.zoy.org/wtfpl/> | |
" Version: 2.1 | |
" | |
" This theme is based on Josh O'Rourke's Vim clone of the railscast | |
" textmate theme. The key thing I have done here is supply 256-color |
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
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" a lot of this was stolen from: http://amix.dk/vim/vimrc.html " | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" => VIM user interface | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Set 7 lines to the curors - when moving vertical.. | |
set so=2 | |
set wildmenu "Turn on WiLd menu |
OlderNewer