Skip to content

Instantly share code, notes, and snippets.

View prassee's full-sized avatar
🤔
கற்க கசடறக் கற்பவை கற்றபின் நிற்க அதற்குத் தக - Thirukural

prassee prassee

🤔
கற்க கசடறக் கற்பவை கற்றபின் நிற்க அதற்குத் தக - Thirukural
View GitHub Profile
@0XDE57
0XDE57 / config.md
Last active July 7, 2024 00:25
Firefox about:config privacy settings

ABOUT

about:config settings to harden the Firefox browser. Privacy and performance enhancements.
To change these settings type 'about:config' in the url bar. Then search the setting you would like to change and modify the value. Some settings may break certain websites from functioning and rendering normally. Some settings may also make firefox unstable. I am not liable for any damages/loss of data.

Not all these changes are necessary and will be dependent upon your usage and hardware. Do some research on settings if you don't understand what they do. These settings are best combined with your standard privacy extensions (HTTPS Everywhere No longer required: Enable HTTPS-Only Mode, NoScript/Request Policy, uBlock origin, agent spoofing, Privacy Badger etc), and all plugins set to "Ask To Activate".

@prassee
prassee / gist:3116179
Created July 15, 2012 10:17
Curried Functions in Scala
package scagex
object CurriedFilter {
private val strList = List("scala is asdf","scalaxia is beta","akka is wonderful","sbt is build tools","some text which is not related to skala")
def yieldFilteredItems(filtFn: String => Boolean) = strList.filter(filtFn)
def dofilter(name: String)(filter: String) = filter.contains(name)
def main(args: Array[String]) {