Skip to content

Instantly share code, notes, and snippets.

View gassechen's full-sized avatar

gassechen gassechen

  • Argentina
  • 17:18 (UTC -03:00)
View GitHub Profile
@gassechen
gassechen / org-style.css
Created February 15, 2022 15:38 — forked from mowen/org-style.css
A stylesheet for the Emacs Org Mode HTML export
/**
* This stylesheet will work pretty well with a regular Org Mode HTML export.
* However, you do have to turn off all of the defaults:
*
* (setq org-export-html-style-include-scripts nil
* org-export-html-style-include-default nil)
*
* and insert a call to the stylesheet:
*
* (setq org-export-html-style
@gassechen
gassechen / edit-init-rc.md
Created May 15, 2019 11:20 — forked from ashutosh-mishra/edit-init-rc.md
How to run custom script from init.rc, How to Extract Android Kernel And Modify The Boot Ramdisk(Android 4+)

init.rc changes

init.rc changes to run any script Can be used to start any android application, service

on property:dev.bootcomplete=1
    exec - system system -- /system/bin/sh <custom script path>
    # exec - system system -- /system/bin/sh /data/local/bootscript/testservice.sh

Script can contains applications start, stop commands