Orthodox C++ (sometimes referred as C+) is minimal subset of C++ that improves C, but avoids all unnecessary things from so called Modern C++. It's exactly opposite of what Modern C++ suppose to be.
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
00b41c95-dab0-4487-9791-b9d2c32c80f2 - Office 365 Management | |
04b07795-8ddb-461a-bbee-02f9e1bf7b46 - Microsoft Azure CLI | |
0ec893e0-5785-4de6-99da-4ed124e5296c - Office UWP PWA | |
18fbca16-2224-45f6-85b0-f7bf2b39b3f3 - Microsoft Docs | |
1950a258-227b-4e31-a9cf-717495945fc2 - Microsoft Azure PowerShell | |
1b3c667f-cde3-4090-b60b-3d2abd0117f0 - Windows Spotlight | |
1b730954-1685-4b74-9bfd-dac224a7b894 - Azure Active Directory PowerShell | |
1fec8e78-bce4-4aaf-ab1b-5451cc387264 - Microsoft Teams | |
22098786-6e16-43cc-a27d-191a01a1e3b5 - Microsoft To-Do client | |
268761a2-03f3-40df-8a8b-c3db24145b6b - Universal Store Native Client |
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 asyncio | |
from concurrent import futures | |
import functools | |
import inspect | |
import threading | |
from grpc import _server | |
def _loop_mgr(loop: asyncio.AbstractEventLoop): |
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 requests | |
# Basic Variables | |
MIN_RANGE = 22000 | |
MAX_RANGE = 40000 | |
BASE_URL = 'http://B%d.cdn.telefonica.com/%d/%s_SUB.m3u8' | |
CHANNELS_IDS = ['NICK', 'DSNJR', '40TV', 'DSNYXD', 'COCINA', '24HORAS', 'INVITADO', 'FOX', | |
'AXN', 'CLL13', 'TNT', 'FOXCRIME', 'CSMO', 'AXNWHITE', 'PCMDY', 'SYFY', 'TCM', | |
'CPLUSLG', 'MOVFUTBOL', 'CPLUSCHP', 'NTLG', 'NATGEOWILD', 'CPLUS1'] |
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
from PySide import QtCore, QtGui | |
class MyWindow(QtGui.QDialog): | |
def __init__(self, parent=None): | |
super(MyWindow, self).__init__(parent) | |
self.model = QtGui.QStringListModel(['sam', 'sally', 'jack'], self) | |
self.v = QtGui.QListView() | |
self.v.setModel(self.model) |
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
#!/usr/bin/env ruby -w | |
# pnginator.rb: pack a .js file into a PNG image with an HTML payload; | |
# when saved with an .html extension and opened in a browser, the HTML extracts and executes | |
# the javascript. | |
# Usage: ruby pnginator.rb input.js output.png.html | |
# By Gasman <http://matt.west.co.tt/> | |
# from an original idea by Daeken: http://daeken.com/superpacking-js-demos |