Skip to content

Instantly share code, notes, and snippets.

@jsadeli
jsadeli / spam-callers.txt
Last active June 14, 2024 03:47
List of Spam Callers
The following contains list of spam callers banned for various reasons.
This list will evolve over time.
--------------------------------------------------------------------------------
Date Phone Number Description
--------------------------------------------------------------------------------
2024-06-13 +62 21 3020 #### CIMB
2024-06-13 +62 21 3114 11## CIMB
2024-06-13 +62 21 3117 39## CIMB
2024-06-13 +62 21 3115 65## HSBC
@jsadeli
jsadeli / banned-vendors.txt
Created August 21, 2019 03:29
List of Banned Vendors
The following contains list of vendors banned from future use/contracts/work for various reasons.
This list will evolve over time.
--------------------------------------------------------------------------------
Date Vendor Description
--------------------------------------------------------------------------------
@julianxhokaxhiu
julianxhokaxhiu / create-iso.sh
Created September 24, 2016 21:46
Simple bash script to create a Bootable ISO from macOS Sierra Install Image from Mac App Store
#!/bin/bash
#
# Credits to fuckbecauseican5 from https://www.reddit.com/r/hackintosh/comments/4s561a/macos_sierra_16a238m_install_success_and_guide/
# Adapted to work with the official image available into Mac App Store
#
# Enjoy!
hdiutil attach /Applications/Install\ macOS\ Sierra.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app
hdiutil create -o /tmp/Sierra.cdr -size 7316m -layout SPUD -fs HFS+J
hdiutil attach /tmp/Sierra.cdr.dmg -noverify -nobrowse -mountpoint /Volumes/install_build
@theconektd
theconektd / github.css
Created April 30, 2012 02:11
Github Markdown CSS - for Markdown Editor Preview
body {
font-family: Helvetica, arial, sans-serif;
font-size: 14px;
line-height: 1.6;
padding-top: 10px;
padding-bottom: 10px;
background-color: white;
padding: 30px; }
body > *:first-child {
@lucasfais
lucasfais / gist:1207002
Created September 9, 2011 18:46
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@jsadeli
jsadeli / RootBindingExtension.cs
Created July 15, 2011 14:37
XAML markup extension to bind directly to root object's datacontext
using System;
using System.ComponentModel;
using System.Globalization;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Markup;
using System.Xaml;
namespace YourNamespace.MarkupExtensions
@somebox
somebox / gh-like.css
Created July 14, 2011 14:55
github markdown css+script with syntax highlighting. Works with http://markedapp.com
/*
Some simple Github-like styles, with syntax highlighting CSS via Pygments.
*/
body{
font-family: helvetica, arial, freesans, clean, sans-serif;
color: #333;
background-color: #fff;
border: none;
line-height: 1.5;
margin: 2em 3em;