This App Will Guess The Letter You draw using Machine Learning
A Pen by abhishek chaudhary on CodePen.
| <!doctype html> | |
| <html ⚡ lang="en"> | |
| <head> | |
| <title> | |
| TheAbbie: Story | |
| </title> | |
| <meta charset="utf-8" /> | |
| <link rel="canonical" href="/story"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
This App Will Guess The Letter You draw using Machine Learning
A Pen by abhishek chaudhary on CodePen.
| #include <stdio.h> | |
| #include <string.h> | |
| void main() { | |
| int top = -1; | |
| int MAX = 10; | |
| int flag = 1; | |
| char stack[MAX]; | |
| char str[MAX]; |
| #include<stdio.h> | |
| #include<conio.h> | |
| #include<graphics.h> | |
| #include<math.h> | |
| #include<dos.h> | |
| void main() | |
| { | |
| int x,y,xa,ya,xb,yb,dx,dy,choice,p; | |
| float xinc,yinc; |
| var app = require('express')(); | |
| var axios = require("axios"); | |
| var cheerio = require("cheerio"); | |
| var mkvtext = require("theabbie").text; | |
| app.get("/*", async function(req,res) { | |
| var $ = cheerio.load((await axios("https://devrant.com/search?term="+req.query.id)).data); | |
| var data = $('.rantlist-title-text').map((i,el)=>$(el).text()).get().join(" ").toLowerCase().replace(/[^a-zA-Z0-9\s\:]*/g,"").replace(/\r\n/g, '\n').replace(/\t+/g,"").split('\n').filter(x => /\w/.test(x)).join(' '); |
| var app = require('express')(); | |
| var devRant = require("rantscript"); | |
| const Fs = require('fs') | |
| const Path = require('path') | |
| const Axios = require('axios') | |
| const cheerio = require("cheerio") | |
| async function load(url) { | |
| const writer = Fs.createWriteStream("meme.jpg") |
| var app = require('express')(); | |
| var devRant = require("rantscript"); | |
| const Fs = require('fs') | |
| const Path = require('path') | |
| const Axios = require('axios') | |
| const cheerio = require("cheerio") | |
| var url = require("url"); | |
| async function load(url) { |