Skip to content

Instantly share code, notes, and snippets.

View KomeOn's full-sized avatar
:atom:
Atom enlighten us...

Sanket Sonowal KomeOn

:atom:
Atom enlighten us...
  • Telangana
  • 15:28 (UTC -12:00)
View GitHub Profile
@KomeOn
KomeOn / Custom_restaurant.py
Created August 31, 2020 14:47 — forked from StephenFordham/Custom_restaurant.py
Custom_restaurant
# Magic methods through short code snippets
class Restaurants(object):
def __init__(self, wk1):
self._wk1 = wk1
def __setattr__(self, key, value):
if not isinstance(value, list):
raise TypeError('please enter weekly takings a list')
for val in value:
@KomeOn
KomeOn / AndroidManifest.xml
Created July 29, 2017 16:34 — forked from bjoernQ/AndroidManifest.xml
Creating a System Overlay (Always on Top over all Apps) in Android
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.mobilej.overlay"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="14" />
<application android:label="SystemOverlay" >
<activity