I just published a blog post with a few other options and info on decluttering Google's search results page.
😡😡😡
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\Drive\shell] | |
| @="none" | |
| [-HKEY_CLASSES_ROOT\Drive\shell\open] | |
| [HKEY_CLASSES_ROOT\Directory] | |
| @="File Folder" |
I just published a blog post with a few other options and info on decluttering Google's search results page.
😡😡😡
Quick guide on how to setup git signing. Information is aggregated from following sources:
| https://code.google.com/p/android/issues/detail?id=32696#c5 | |
| If you have a certificate that is not | |
| trusted by Android, when you add it, it goes in the personal cert store. | |
| When you add a cert in this personal cert store, the system requires a | |
| higher security level to unlock the device. But if you manage to add your | |
| cert to the system store then you don't have this requirement. Obviously, | |
| root is required to add a certificate to the system store, but it is quiet | |
| easy. |
| package com.sadieyu.logg; | |
| import android.app.Activity; | |
| import android.os.Bundle; | |
| import android.util.Log; | |
| /* | |
| .class public Lcom/sadieyu/logg/MainActivity; | |
| .super Landroid/app/Activity; | |
| .source "MainActivity.java" |
Or what the hell do #![no_start], #![no_main], #[lang = "start"], #[start], and #[main] do?
Disable automatically linking in the native crate and thus the default start lang item.
Which means you'll probably need one of: #![no_main], #![lang = “start”] or #[start] instead