Skip to content

Instantly share code, notes, and snippets.

@pcluddite
pcluddite / Win32File.bas
Last active March 13, 2019 21:12
A set of functions based on the Windows API to manage the file system in VBA
'
' Win32File
' Copyright (c) 2016-2017 Timothy Baxendale (pcluddite@outlook.com)
'
' This library is free software; you can redistribute it and/or
' modify it under the terms of the GNU Lesser General Public
' License as published by the Free Software Foundation; either
' version 2.1 of the License, or (at your option) any later version.
'
' This library is distributed in the hope that it will be useful,
@pcluddite
pcluddite / PowerSheet.bas
Last active November 3, 2019 00:46
Powerful functions for manipulating Excel data utilizing a hidden temporary sheet
'
' PowerSheet
' Copyright (c) 2016-2019 Timothy Baxendale (pcluddite@outlook.com)
'
' This library is free software; you can redistribute it and/or
' modify it under the terms of the GNU Lesser General Public
' License as published by the Free Software Foundation; either
' version 2.1 of the License, or (at your option) any later version.
'
' This library is distributed in the hope that it will be useful,
@pcluddite
pcluddite / SheetEx.bas
Last active March 13, 2019 21:18
VBA module to ease manipulation of sheets and ranges
'
' SheetEx
' Copyright (c) 2016-2017 Timothy Baxendale (pcluddite@outlook.com)
'
' This library is free software; you can redistribute it and/or
' modify it under the terms of the GNU Lesser General Public
' License as published by the Free Software Foundation; either
' version 2.1 of the License, or (at your option) any later version.
'
' This library is distributed in the hope that it will be useful,
@Xion
Xion / deprecated.py
Created May 26, 2013 11:49
@deprecated decorator for Python classes
import functools
import inspect
import os
import warnings
class _DeprecatedDecorator(object):
MESSAGE = "%s is @deprecated"
def __call__(self, symbol):