Skip to content

Instantly share code, notes, and snippets.

View fluffybeing's full-sized avatar
💻
Working

Rahul Ranjan fluffybeing

💻
Working
View GitHub Profile

iOS, The Future Of macOS, Freedom, Security And Privacy In An Increasingly Hostile Global Environment

This post by a security researcher who prefers to remain anonymous will elucidate concerns about certain problematic decisions Apple has made and caution about future decisions made in the name of “security” while potentially hiding questionable motives. The content of this article represents only the opinion of the researcher. The researcher apologises if any content is seen to be inaccurate, and is open to comments or questions through PGP-encrypted mail.



TL;DR

@fluffybeing
fluffybeing / get_url.scpt
Created May 19, 2021 11:11 — forked from prashanthrajagopal/get_url.scpt
AppleScript to get url from Safari, Firefox and Chrome
display dialog "Name of the browser?" default answer "Safari"
set inp to text returned of result
tell application "System Events"
if inp is "Google Chrome" then
tell application "Google Chrome" to return URL of active tab of front window
else if inp is "Safari" then
tell application "Safari" to return URL of front document
else if inp is "Firefox" then
tell application "Firefox" to activate
@fluffybeing
fluffybeing / README.md
Created December 10, 2020 10:17 — forked from rafi/README.md
Best macOS Apps

Best macOS Apps

Unless otherwise stated, all apps are FREE.

Categories

Terminals

  • Alacritty - Cross-platform, GPU-accelerated terminal emulator.
I was drawn to programming, science, technology and science fiction
ever since I was a little kid. I can't say it's because I wanted to
make the world a better place. Not really. I was simply drawn to it
because I was drawn to it. Writing programs was fun. Figuring out how
nature works was fascinating. Science fiction felt like a grand
adventure.
Then I started a software company and poured every ounce of energy
into it. It failed. That hurt, but that part is ok. I made a lot of
mistakes and learned from them. This experience made me much, much
@fluffybeing
fluffybeing / clean.el
Created May 10, 2020 05:57 — forked from rougier/clean.el
A very minimal but elegant emacs configuration file
(require 'org)
(setq-default indent-tabs-mode nil)
(setq org-display-inline-images t)
(setq org-redisplay-inline-images t)
(setq org-startup-with-inline-images "inlineimages")
(setq default-frame-alist
(append (list '(width . 72) '(height . 40))))
@fluffybeing
fluffybeing / add.asm
Created April 28, 2019 06:22
ARM code for simple Swift Program
import Foundation
func add(a: Int, b: Int) -> Int {
let sum = a + b
return sum
}
_ = add(a: 3, b: 6)
@fluffybeing
fluffybeing / type-theory.bib
Created April 5, 2019 15:29 — forked from beastaugh/type-theory.bib
Type theory bibliography
@book { girard1989,
author = "Jean-Yves Girard and Yves Lafont and Paul Taylor",
title = "Proofs and Types",
publisher = "Cambridge University Press",
year = "1989",
isbn = "978-0521371810" }
@book { barendregt1984
author = "Henrik P. Barendregt",
title = "The Lambda Calculus: Its Syntax and Semantics",
@fluffybeing
fluffybeing / custom.json
Last active November 20, 2018 02:45
Karbiner Complex Rules
{
"title": "Caps and return to ctrl. Ctrl to caps.",
"rules": [
{
"description": "Post left_ctrl when return_or_enter is hold.",
"manipulators": [
{
"from": {
"key_code": "return_or_enter",
"modifiers": {
@fluffybeing
fluffybeing / sim-run.sh
Created September 13, 2018 09:38 — forked from shazron/sim-run.sh
Run Xcode Simulator project from the command line
#!/bin/bash
#
# Build and iPhone Simulator Helper Script
# Shazron Abdullah 2011
#
# WARN: - if your .xcodeproj name is not the same as your .app name,
# this won't work without modifications
# - you must run this script in where your .xcodeproj file is
PROJECTNAME=$1