Skip to content

Instantly share code, notes, and snippets.

View salk52's full-sized avatar

Alen Salkovic salk52

View GitHub Profile
@agungsb
agungsb / fancy_fab.dart
Last active October 27, 2020 10:38
Create A Simple Animated FloatingActionButton in Flutter
import 'package:flutter/material.dart';
class FancyFab extends StatefulWidget {
final Function() onPressed;
final String tooltip;
final IconData icon;
FancyFab({this.onPressed, this.tooltip, this.icon});
@override
@samdenty
samdenty / README.MD
Last active March 19, 2025 01:39
VS Code CSS addition to increase readability on file tree.

How to install

Custom CSS plugin

Install the custom CSS plugin, then make a file on your computer that will hold your custom CSS, I like to make one in my home directory called ~/.vscodestyles.css and then add the CSS into it.

Once done, open your command palette and select enable custom CSS and JS

@MattyBoy4444
MattyBoy4444 / OutlookDataObject.cs
Last active July 11, 2025 06:07
Fixed issue with exception attempting to access protected memory
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.ComTypes;
using System.Reflection;
using System.IO;
using System.Windows;