Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| def make_basic_curve(): | |
| crv = bpy.data.curves.new("crv", type="CURVE") | |
| crv_ob = bpy.data.objects.new("crv_ob", crv) | |
| return crv, crv_ob | |
| scnobs = bpy.context.scene.objects | |
| pencil = bpy.data.grease_pencil[0] | |
| for i, stroke in enumerate(pencil.layers[0].active_frame.strokes): |
| RAL,RGB,HEX,CMYK,LRV,English,German,French,Spanish,Italian,Dutch | |
| RAL 1000,205-186-136,#CDBA88,0-9-34-20,51.79,Green beige,Grünbeige,Beige vert,Beige verdoso,Beige verdastro,Groenbeige | |
| RAL 1001,208-176-132,#D0B084,0-15-37-18,48.09,Beige,Beige,Beige,Beige,Beige,Beige | |
| RAL 1002,210-170-109,#D2AA6D,0-19-48-18,45.07,Sand yellow,Sandgelb,Jaune sable,Amarillo arena,Giallo sabbia,Zandgeel | |
| RAL 1003,249-169-0,#F9A900,0-32-100-2,49.05,Signal yellow,Signalgelb,Jaune de sécurité,Amarillo señales,Giallo segnale,Signaalgeel | |
| RAL 1004,228-158-0,#E49E00,0-31-100-11,42.13,Golden yellow,Goldgelb,Jaune or,Amarillo oro,Giallo oro,Goudgeel | |
| RAL 1005,203-143-0,#CB8F00,0-30-100-20,34.15,Honey yellow,Honiggelb,Jaune miel,Amarillo miel,Giallo miele,Honinggeel | |
| RAL 1006,225-144-0,#E19000,0-36-100-12,37.45,Maize yellow,Maisgelb,Jaune maïs,Amarillo maíz,Giallo polenta,Maisgeel | |
| RAL 1007,232-140-0,#E88C00,0-40-100-9,37.63,Daffodil yellow,Narzissengelb,Jaune narcisse,Amarillo narciso,Giallo narciso,Narcissengeel | |
| RAL 1011,175-128-80,#AF8050,0-27 |
| # ##### BEGIN GPL LICENSE BLOCK ##### | |
| # | |
| # This program is free software; you can redistribute it and/or | |
| # modify it under the terms of the GNU General Public License | |
| # as published by the Free Software Foundation; either version 2 | |
| # of the License, or (at your option) any later version. | |
| # | |
| # This program is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| server { | |
| listen %ip%:%httpport%; | |
| listen %ip%:%httpsport% ssl; | |
| server_name %host% %aliases%; | |
| # if ($request_method !~* ^(GET|HEAD|POST)$ ){return 403;} | |
| location ~ /\. {deny all;} | |
| location / { |
| import cv2 | |
| import math | |
| import numpy as np | |
| import sys | |
| def apply_mask(matrix, mask, fill_value): | |
| masked = np.ma.array(matrix, mask=mask, fill_value=fill_value) | |
| return masked.filled() | |
| def apply_threshold(matrix, low_value, high_value): |
| <?php | |
| /* | |
| (2014) Main source -> http://lancenewman.me/posting-a-photo-to-instagram-without-a-phone/ | |
| I just managed to sniff Instagram traffic and fixed the code | |
| -- Have fun - batuhan.org - Batuhan Katırcı | |
| --- for your questions, comment @ http://batuhan.org/instagram-photo-upload-with-php/ | |
| 1. Go to Sublime Text to: Tools -> Build System -> New Build System | |
| and put the next lines: | |
| { | |
| "cmd": ["python3", "-i", "-u", "$file"], | |
| "file_regex": "^[ ]File \"(...?)\", line ([0-9]*)", | |
| "selector": "source.python" | |
| } | |
| Then save it with a meaningful name like: python3.sublime-build |
| # ##### BEGIN GPL LICENSE BLOCK ##### | |
| # | |
| # This program is free software; you can redistribute it and/or | |
| # modify it under the terms of the GNU General Public License | |
| # as published by the Free Software Foundation; either version 2 | |
| # of the License, or (at your option) any later version. | |
| # | |
| # This program is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
WSA or Windows Subsystem for Android is a Tool that allows Windows to run Android Apps directly without using any emulator. The problem is Windows Subsystem for Android is currently only available through preview via the Beta Channel of the Windows Insider Program. But if you follow this guide, you don't have to be in Windows Insider Program to try it out. The only thing you need is Windows 11 installed and some patience.