Skip to content

Instantly share code, notes, and snippets.

@lalthomas
lalthomas / desktop.ini
Last active June 16, 2016 15:15
Windows 98 machine desktop.ini customization
[ExtShellFolderViews]
{BE098140-A513-11D0-A3A4-00C04FD706EC}={BE098140-A513-11D0-A3A4-00C04FD706EC}
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
Attributes=1
IconArea_Image=Folder.JPG
IconArea_Text=0x00FFFFFF
[.ShellClassInfo]
ConfirmFileOp=0
@lalthomas
lalthomas / desktop.ini
Last active June 16, 2016 15:18
Windows 98 desktop.ini of my video folder
[.ShellClassInfo]
InfoTip=@Shell32.dll,-12690
IconFile=%SystemRoot%\system32\SHELL32.dll
IconIndex=-238
[DeleteOnCopy]
Owner=Lal
Personalized=14
PersonalizedName=My Videos
@lalthomas
lalthomas / desktop.ini
Last active June 16, 2016 15:19
Windows 98 'desktop.ini' file contends of my pictures folder
[DeleteOnCopy]
Owner=Lal
Personalized=39
PersonalizedName=My Pictures
[.ShellClassInfo]
InfoTip=@Shell32.dll,-12688
IconFile=%SystemRoot%\system32\mydocs.dll
IconIndex=-101
@lalthomas
lalthomas / desktop.ini
Last active June 16, 2016 15:20
Windows 98 desktop.ini file contends of my music folder
[DeleteOnCopy]
Owner=Lal
Personalized=13
PersonalizedName=My Music
[.ShellClassInfo]
InfoTip=@Shell32.dll,-12689
IconFile=%SystemRoot%\system32\SHELL32.dll
IconIndex=-237
@lalthomas
lalthomas / desktop.ini
Last active June 16, 2016 15:21
Windows 98 desktop folder's desktop.ini file contends
[{5984FFE0-28D4-11CF-AE66-08002B2E1262}]
PersistMonikerPreview=%WebDir%\folder.bmp
PersistMoniker=file://Folder Settings\Folder.htt
[ExtShellFolderViews]
{5984FFE0-28D4-11CF-AE66-08002B2E1262}={5984FFE0-28D4-11CF-AE66-08002B2E1262}
{BE098140-A513-11D0-A3A4-00C04FD706EC}={BE098140-A513-11D0-A3A4-00C04FD706EC}
[.ShellClassInfo]
ConfirmFileOp=0
IconFile=%SystemRoot%\system32\SHELL32.dll
IconIndex=117
@lalthomas
lalthomas / script-for-removing-script-tag.bkr
Last active March 4, 2022 11:30
Ecobyte Script for removing script tag
Version 2.2
begin_group_backup
group_start
RemoveScript from HTML
<SCRIPT
<!-- SCRIPT>
</SCRIPT>
</SCRIPT>-->
@lalthomas
lalthomas / cpp.ctpl
Last active June 16, 2016 15:32
Context text editor c++ autotext template
[main | ]
int main()
{
|
}
@lalthomas
lalthomas / objectPascal.ctpl
Created November 25, 2012 06:32
context text editor object pascal autotext template
[arrayc | array declaration (const)]
array[0..|] of = ();
[arrayd | array declaration (var)]
array[0..|] of ;
[casee | case statement (with else)]
case | of
: ;
: ;
@lalthomas
lalthomas / java.ctpl
Created November 25, 2012 06:29
context text editor java autotext template
[for | for block]
for (int i=0; i<|; i++) {}
[prog | Java Program Template]
public class |MyProg {
/** Code documentation here */
public static void main(String[] args) {
/* multi-line and semi-line comments here */
// one-line comments here
@lalthomas
lalthomas / html.ctpl
Created November 25, 2012 06:27
context text editor html autotext template
[a | align attribute]
align="|center"
[ah | anchor href tag]
<a href="http://|.html" target="_self"></a>
[an | anchor name tag]
<a name="|"></a>
[btn | Button (generic)]