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
print "hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world " |
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
0-mail.com | |
0815.ru | |
0clickemail.com | |
0wnd.net | |
0wnd.org | |
10minutemail.com | |
20minutemail.com | |
2prong.com | |
30minutemail.com | |
3d-painting.com |
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
1033edge.com | |
11mail.com | |
123.com | |
123box.net | |
123india.com | |
123mail.cl | |
123qwe.co.uk | |
150ml.com | |
15meg4free.com | |
163.com |
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
^([5-9]\d|[1-9]\d{2,})$ |
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
I've found a way to use pc like an headset with Android phone (for making callings). | |
!!! I've use pulseaudio from jessie-backports: I don't know how much this takes risks ;-) !!! | |
In /etc/apt/sources.list add: | |
deb http://ftp.jp.debian.org/debian/ jessie-backports main contrib non-free | |
deb-src http://ftp.jp.debian.org/debian/ jessie-backports main contrib non-free | |
$ sudo apt-get update | |
$ sudo apt-get install pulseaudio=7.1-2~bpo8+1 pulseaudio-utils=7.1-2~bpo8+1 \ |
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 aiofiles | |
import asyncio | |
async def red(): | |
print('where did lost ') | |
async with aiofiles.open('data.txt', mode='r') as f: | |
contents = await f.read() | |
return contents | |
events = asyncio.get_event_loop() | |
try: | |
coro = events.run_until_complete(red()) |
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
call plug#begin() | |
Plug 'projekt0n/github-nvim-theme' | |
"--------------------------------------------------------------------------------- | |
Plug 'mbbill/undotree', { 'on': 'UndotreeToggle' } | |
" requires diff.exe from git | |
map <F3> :UndotreeToggle<cr> | |
"--------------------------------------------------------------------------------- | |
Plug 'mhinz/vim-startify',{'on':'Startify'} | |
nnoremap <F4> :Startify <cr> | |
"--------------------------------------------------------------------------------- |
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
local obs = obslua | |
local ffi = require("ffi") | |
ffi.cdef[[ | |
void Beep(int freq,int dur); | |
]] | |
function beep() | |
ffi.C.Beep(7000,300) | |
end |
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
-- https://obsproject.com/forum/threads/how-to-enumerate-script-properties-in-lua.83406/#post-397381 | |
-- create source with name tmp , then add Color Correction filter named color | |
local obs = obslua | |
local ffi = require("ffi") | |
local obsffi | |
ffi.cdef[[ | |
struct obs_source; |
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
local obs = obslua | |
--- name of a scene item | |
local source_name = '' | |
--- get the name of the current scene | |
local function current_scene_name() | |
local source = obs.obs_frontend_get_current_scene() | |
local name = obs.obs_source_get_name(source) | |
obs.obs_source_release(source) |
OlderNewer