I hereby claim:
- I am halicea on github.
- I am halicea (https://keybase.io/halicea) on keybase.
- I have a public key ASCm_btCsuguA7fSd3CRxN2uVKgVV560mnUVtC5sWxDxoQo
To claim this, I am signing this object:
| const templateCache = {} | |
| let render = async (data, selector, target, swap = "innerHTML") => { | |
| let cache = templateCache["selector"]; | |
| if(cache){ | |
| tmpl = cache; | |
| } | |
| else if(selector.startsWith("/")){ | |
| try { | |
| const res = await fetch(selector); | |
| if (res.status === 200){ |
I hereby claim:
To claim this, I am signing this object:
halicea
I hereby claim:
To claim this, I am signing this object:
| pip install -g youtube-dl | |
| #AKATA MAKATA | |
| youtube-dl --output="akata-makata_%(playlist_index)s.flv" https://www.youtube.com/playlist?list=PLFa_ZbUCbla4OLIRilzupyVEHluyoNEn8 | |
| #TROTRO | |
| youtube-dl --output="trotro_%(title)s.flv" https://www.youtube.com/playlist?list=PLGUJhM1CConvsyfdO3IIbs_OoY8LGINT8 | |
| youtube-dl --output="trotro_%(title)s.flv" https://www.youtube.com/playlist?list=PLGUJhM1CConsXyLoNNpd9rie6cyUEc-F4 | |
| youtube-dl --output="trotro_%(title)s.flv" https://www.youtube.com/playlist?list=PLGUJhM1CConuA5dckiyQOgbnAlhQgVZI5 | |
| youtube-dl --output="trotro_%(title)s.flv" https://www.youtube.com/playlist?list=PLGUJhM1CConut2OULkt73v6AkjmaDq-Mc |
| <html> | |
| <head> | |
| <title> Sample Link</title> | |
| </head> | |
| <body> | |
| <a href="gojimo-tutor://specialisms/Mathematics"> Click Me </a> | |
| </body> | |
| </html> |
| import os | |
| import sys | |
| import codecs | |
| ignored_dirs = [ | |
| 'node_modules', 'bower_components', 'typings', | |
| 'bin', 'obj', 'Debug', 'Release', | |
| 'webview', 'html5', 'checkbox', 'jenkins', 'resources', | |
| 'Legacy', 'Old', 'PDFViewCtrlTools'] |
| import sys | |
| sys.path.append('../') | |
| from x4c.api import (PropertyDefinition, PropertySetDefinition, | |
| ElementDefinition, ManagerDefinition) | |
| from x4c.types import Numeric, String | |
| from x4c.store import JsonStore | |
| from x4c.registry import Registry | |
| Money = Numeric | |
| Percent = Numeric | |
| Enum = String |
| class Symbol(object): | |
| def __init__(self, name): | |
| self.name = name | |
| def __repr__(self): | |
| return '$'+str(self.name) | |
| def __str__(self): | |
| self.__repr__() |
| from __future__ import print_function | |
| from atom.catom import DefaultValue | |
| from atom.api import (Atom, Signal, Instance, ForwardInstance, Bool, Value, | |
| List, Str, set_default) | |
| from .core import X4CDefinition, X4CObject, ROOT_DEFINITION | |
| from .types import Type | |
| class Formula(Atom): | |
| _exp = Str(default='') | |
| interpreter = Value() |
| (sum | |
| (select | |
| (emref 'prlistprice') | |
| (cond | |
| (and | |
| (> (emref 'prlistprice') 1000) | |
| (= (emref 'prvendorname') 'brocade') | |
| ) | |
| ) | |
| ) |