- [็ฟป่จณ่จไบ]ใใคใฏใญใใญใณใใจใณใ - ใใคใฏใญใตใผใในใฎใใญใณใใจใณใใธใฎๅฟ็จ
- ใใใฏใจใณใใฎใใคใฏใญใตใผใในใจ้ฃๆบใใๅใขใใชใฑใผใทใงใณใฎใฉใคใใฉใช๏ผใใฌใผใ ใฏใผใฏใซไพๅญใใชใ UI๏ผๅฆ็ใๆไพใใใใญใณใใจใณใใฎใขใธใฅใผใซใฎใใจ
- ็นๅพด
- ใฉใฎใขใใชใฑใผใทใงใณใงใไฝฟ็จใงใใ
- ใใฌใผใ ใฏใผใฏใซไพๅญใใชใ
- ๆ่ก้ธๆใ่ช็ฑใซใชใ
- ้ฃๆบใซใฏ DOM ใฎ API ใไฝฟ็จใใ
- Web Components ใชใฉ๏ผPolyfill ใๅฟ ่ฆใใ๏ผ
- ใคใณใใผใใใใฐๅ จใฆใฎๆฉ่ฝใๅฉ็จใงใใ
- ็นๅพด
- ใใผใๆฏใซ็ฌ็ซใใใ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TypeScript 1 hr 49 mins โโโโโโโโโโโโโโโโโโโโโ 35.0% | |
Slim 1 hr 42 mins โโโโโโโโโโโโโโโโโโโโโ 32.8% | |
Ruby 47 mins โโโโโโโโโโโโโโโโโโโโโ 15.2% | |
JavaScript 17 mins โโโโโโโโโโโโโโโโโโโโโ 5.8% | |
YAML 10 mins โโโโโโโโโโโโโโโโโโโโโ 3.5% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import MediaPlayer | |
@objc(MusicLibrary) class MusicLibrary : CDVPlugin { | |
func getAlbums(_ command: CDVInvokedUrlCommand) { | |
let albumItems = MPMediaQuery.albums().items as [MPMediaItem]? | |
if albumItems == nil { | |
let result = CDVPluginResult(status: CDVCommandStatus_OK, messageAs: []) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def is_digit( num ) : | |
if num in list( map( lambda n: str( n ), range( 10 ) ) ) : | |
return True | |
return False | |
class Tokenizer : | |
def __init__( self, formula ) : | |
self.formula = formula | |
self.tokens = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="hyperapp.js"></script> | |
<script> | |
// State | |
const state = { |