This file contains hidden or 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
#include <QCoreApplication> | |
#include <QDebug> | |
#include <windows.h> | |
#include <shellapi.h> | |
int utf8Main(int argc, char *argv[]) | |
{ | |
QStringList utf8Args; | |
for (int i = 0; i != argc; ++i) |
This file contains hidden or 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
package main | |
import ( | |
"github.com/PuerkitoBio/goquery" | |
"github.com/geziyor/geziyor" | |
"github.com/geziyor/geziyor/client" | |
"github.com/tidwall/gjson" | |
"log" | |
"os" | |
"strings" |
This file contains hidden or 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
#include "admobctl.h" | |
#include "QtAdMob/QtAdMobBanner.h" | |
#include "QtAdMob/QtAdMobInterstitial.h" | |
#include <QtQml> | |
#include <QDebug> | |
#include <QTimer> | |
AdMobCtl::AdMobCtl(QObject *parent) : QObject(parent) | |
{ | |
m_Banner = CreateQtAdMobBanner(); |
This file contains hidden or 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
# demo: http://forsk.ru:8232/company/yandex/blog/258673/ | |
# pip install html5lib beautifulsoup4 | |
# -*- coding: utf-8 -*- | |
import BaseHTTPServer | |
import requests | |
import string | |
from bs4 import BeautifulSoup | |
def main(): | |
httpd = BaseHTTPServer.HTTPServer(('0.0.0.0', 8232), TMHandler) |
NewerOlder