- HTML: https://html.com
- CSS: https://web.dev/learn/css
- JavaScript: https://javascript.info
- React: https://react-tutorial.app
- APl: https://rapidapi.com/learn
- Python: https://learnpython.org
- SQL: https://w3schools.com/sql
- Git: https://git-scm.com/book
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> | |
<link rel="import" href="route.html"> | |
<script type="application/dart">export 'package:polymer/init.dart';</script> | |
<a href="#/home">Home</a> | |
<a href="#/list">List</a> | |
<hr> | |
<x-route></x-route> |
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
[core] | |
editor = vi | |
[alias] | |
st = status -sb | |
ll = log --decorate --graph --oneline | |
[color] | |
ui = auto | |
[push] | |
default = nothing |
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 'dart:collection'; | |
import 'package:js/js.dart'; | |
abstract class JsList<E> extends JsInterface with ListMixin<E> { | |
JsObject _js; | |
factory JsList() => new JsListImpl(); | |
JsList.created(JsObject o) : _js = o, super.created(o); |
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
@Namespace('z.y.x') | |
library js.example.js_proxy; | |
import 'package:js/js.dart'; | |
part 'example.g.dart'; | |
@JsProxy() | |
abstract class _JsFoo { | |
_JsFoo(); |
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
language: dart | |
dart: | |
- stable | |
- dev | |
sudo: false | |
cache: | |
directories: | |
- $HOME/.pub-cache | |
with_content_shell: true | |
before_install: |
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
language: dart | |
sudo: required | |
dist: trusty | |
before_install: | |
- export CHROME_BIN=/usr/bin/google-chrome | |
- export DISPLAY=:99.0 | |
- sh -e /etc/init.d/xvfb start | |
- sudo apt-get update | |
- sudo apt-get install -y libappindicator1 fonts-liberation |