I hereby claim:
- I am talkahe on github.
- I am talkahe (https://keybase.io/talkahe) on keybase.
- I have a public key ASCD_kvqA1DMgjALB87xqCbmjUeAx-AVH3lQqf1Xg5h9vwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<?php | |
//obetener la id del video de youtube | |
$url = $_POST["video"]; | |
preg_match("#(?<=v=)[a-zA-Z0-9-]+(?=&)|(?<=v\/)[^&\n]+(?=\?)|(?<=v=)[^&\n]+|(?<=youtu.be/)[^&\n]+#", $url, $matches); | |
$video = $matches[0]; | |
if($video==""){ | |
echo "La URL debe ser un enlace a Youtube."; | |
die(); | |
}else{ | |
echo "OK."; |
#!/bin/sh | |
#Download, 'cd' into the Downloads/ directory, run 'sh atom_packages.sh' in a terminal | |
#Editor | |
apm install linter # https://atom.io/packages/linter - available linters: http://atomlinter.github.io/ | |
apm install highlight-selected # https://atom.io/packages/highlight-selected | |
apm install atom-beautify # https://atom.io/packages/atom-beautify | |
apm install fold-lines # https://atom.io/packages/fold-lines |
This is a paragraph filled with some bold text and some italic text. The two ways of doing this. We can also strike out some text.
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
this is
part of
the same line.
New line.
import socket, select, threading, sdl2.ext, sys | |
from sdl2 import * | |
from time import sleep | |
class Client(): | |
def __init__(self): | |
''' Constructor ''' | |
self.running = True | |
self.state = "connecting" |
var bluetooth_serial_port = require('bluetooth-serial-port'); | |
var node_ssh = require('node-ssh'); | |
var BLUESERVER = BLUESERVER || { | |
// Dependencies | |
bluetooth: new(bluetooth_serial_port).BluetoothSerialPortServer(), | |
ssh: new node_ssh(), | |
// Message codes | |
INITIAL_CONFIG: 0, |