REPO: https://github.com/smlinux/rtl8723de/branches
Look up for the branch that matches your kernel version:
Get kernel version with
uname -r
- Branches (as for July 2019)
- 4.10-down
- 4.11-up
- 4.15-up
REPO: https://github.com/smlinux/rtl8723de/branches
Look up for the branch that matches your kernel version:
Get kernel version with
uname -r
# glob syntax | |
syntax: glob | |
# Temp files | |
*.bak | |
*.orig | |
*.pyc | |
*~ | |
# Nodejs |
var socket = require('socket.io'), | |
http = require('http'), | |
server = http.createServer(function(req, res){ | |
res.setHeader('Access-Control-Allow-Origin', '*'); | |
// res.setHeader('Access-Control-Request-Method', '*'); | |
// res.setHeader('Access-Control-Allow-Methods', 'OPTIONS, GET'); | |
// res.setHeader('Access-Control-Allow-Headers', '*'); | |
/* | |
if ( req.method === 'OPTIONS' ) { | |
res.writeHead(200); |
# -*- coding: utf-8 -*- | |
import telebot | |
from telebot import types | |
USER_WELCOME = "Bienvenido al servicio de HomeHub." | |
USER_REGISTERED = "{}, te hemos registrado en nuestro sistema." | |
TOKEN = "123456789:TOKEN4529424024-ConfiguraTuTokenXDXDXDXD" | |
bot = telebot.TeleBot(TOKEN) |
||||||||||||||||||||||||||||||||||||||||| | |
||||||||||||||||||||||||||||||||||||||||| | |
||||||||||||||||||||||||||||||||||||||||| | |
||||||||||||||||||||||||||||||||||||||||| | |
||||||||||||||||||||||||||||||||||||||||| | |
||||||||||||||||| |||||||||||||||||||||| | |
|||||||||||||||| |||||||||||||||||||| | |
|||||||| ||||| . |||||||||||||| | |
|||||| |||| ||||||||||||||| | |
|||||| ||||||||||||||||| |
django-export-import
es un paquete de django que nos facilita la tarea de exportar e importar desde y hacia diferentes formatos de datos (CSV, XLS, JSON, HTML).
Éste paquete tiene 4 clases que serán las que más se utilizarían para exportar (y quizás también importar) fácilmente desde nuestra aplicación de Django.
Ésta clase nos sirve para poder utilizar los modelos de Django como recursos (Resource
s)
90% of the people who use Codecademy and Codeschool to try to learn coding fail. This is because 90% of people who turn to Codecademy and Codeschool are learning programming for the sake of learning how to code. This is why you will not be hired if you list Codecademy and/or CodeSchool badges on your resume.
The other 10% of people who use Codecademy or Codeschool become successful developers because they are learning programming to build a tictactoe game to play with their friends; a ecommerce site so they can sell things; a video chat app to connect with relatives; etc.
There is a very different mentality between the 90% and the 10% who are learning programming, and the successful ones are those who sees learning platforms as means to an end, not the end itself. For example, if you have no programming experience and want to learn how to code, your goal should not be claimi
Based on this links:
$ cd /usr/share/nginx/html/
{% extends "base/main.html" %}{% load staticfiles bootstrap %} | |
{% block header %} | |
{% endblock %} | |
{% block content %} | |
<div id="login-form" class="vcenter"> | |
<div class="container-fluid"> | |
<form method="POST" enctype="multipart/form-data" autocomplete="off"> | |
{% csrf_token %} | |
<div class="col-xs-10 col-xs-offset-1 col-sm-6 col-sm-offset-3 col-lg-4 col-lg-offset-4"> | |
<div class="panel panel-default"> |