// jQuery
$(document).ready(function() {
// code
})
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 'package:flutter/material.dart'; | |
void main() { | |
runApp(MaterialApp( | |
debugShowCheckedModeBanner: false, | |
title: "IMCApp", | |
home: MeuApp(), | |
)); | |
} |
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
# -*- coding:utf-8 -*- | |
from flask import Flask, render_template, url_for, request, redirect | |
from flask_sqlalchemy import SQLAlchemy | |
from datetime import datetime | |
app = Flask(__name__) | |
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///crud.db' | |
db = SQLAlchemy(app) |
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
Category | Title | URL | |
---|---|---|---|
Programming | CS50’s Introduction to Game Development from Harvard University | https://www.class-central.com/course/edx-cs50-s-introduction-to-game-development-11504 | |
Programming | CS50’s Mobile App Development with React Native from Harvard University | https://www.class-central.com/course/edx-cs50-s-mobile-app-development-with-react-native-11505 | |
Programming | CS50’s Web Programming with Python and JavaScript from Harvard University | https://www.class-central.com/course/edx-cs50-s-web-programming-with-python-and-javascript-11506 | |
Programming | Functions, Methods, and Interfaces in Go from University of California, Irvine | https://www.class-central.com/course/coursera-functions-methods-and-interfaces-in-go-12050 | |
Programming | Concurrency in Go from University of California, Irvine | https://www.class-central.com/course/coursera-concurrency-in-go-12047 | |
Programming | Getting Started with Go from University of California, Irvine | https://www.class-central.com/course/coursera-getting-started-with-go-1204 |
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
main() { | |
final List<Map<String, dynamic>> menu = [ | |
{"icon": "gradient", "description": "GRADIENTS"}, | |
{"icon": "crop_16_9", "description": "BUTTONS"}, | |
{"icon": "view_agenda", "description": "CARDS"}, | |
{"icon": "view_headline", "description": "MENU"}, | |
{"icon": "style", "description": "TEXT STYLE"}, | |
{"icon": "input", "description": "INPUTS"}, | |
{"icon": "assignment", "description": "FORMS"}, | |
{"icon": "date_range", "description": "DATEPICKER"}, |
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
main() { | |
final List<Map<String, dynamic>> menu = [ | |
{"icon": "gradient", "description": "GRADIENTS"}, | |
{"icon": "crop_16_9", "description": "BUTTONS"}, | |
{"icon": "view_agenda", "description": "CARDS"}, | |
{"icon": "view_headline", "description": "MENU"}, | |
{"icon": "style", "description": "TEXT STYLE"}, | |
{"icon": "input", "description": "INPUTS"}, | |
{"icon": "assignment", "description": "FORMS"}, | |
{"icon": "date_range", "description": "DATEPICKER"}, |
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> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="scaffolded-by" content="https://github.com/google/stagehand"> | |
<title>bolo</title> | |
<link rel="stylesheet" href="styles.css"> |
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:async'; | |
import 'dart:html'; | |
Future main() async { | |
try{ | |
final response = await HttpRequest.getString('https://rebounce.online/api/time'); | |
print('Request was successful'); | |
print(response); | |
}catch(error){ | |
print('The request was not successful'); |
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
To local.properties in Gradle Directory | |
============================= | |
storeFile=debug.keystore | |
storePassword=android | |
keyAlias=AndroidDebugKey | |
keyPassword=android | |
Commands | |
============================ |
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
<input type="button" onclick="run()" value="Start" /> | |
<div id="output" style="white-space:pre-wrap;"> | |
</div> |
NewerOlder