29.02.2016 / 08:20 | |
19Ram84 Пользователь Сейчас: Offline
Регистрация: 30.08.2015
| Naik, Исправил, всё равно не работает. Продолжает писать что-то про SDCARD
|
29.02.2016 / 09:33 | |
aNNiMON Супервизор Сейчас: Offline
Имя: Витёк Регистрация: 11.01.2010
| 19Ram84, собственно, какой список файлов можно получить по адресу sdcard/2.txt? Список файлов только для папки можно получить. Полный пример: use "files"
f = fopen(SDCARD, "i")
print listFiles(f)
__________________
let live |
29.02.2016 / 12:20 | |
aNNiMON Супервизор Сейчас: Offline
Имя: Витёк Регистрация: 11.01.2010
| Обновил версию для Java ME (ссылки в первом посте). Список изменений такой же, как и здесь. Кроме того, добавил возможность загрузки и отрисовки изображения в модуле canvas. Методы: createImage(path) - загрузка изображения из архива программы createImage(width, height) - создание нового изображения с заданным размером createImage(data, offset, length) - создание изображения из массива байт createImage(img, x, y, w, h, transform) - вырезка части изображения из другого изображения с трансформированием getImageSize() - массив с размером изображения [width, height] drawImage(img, x, y, anchor = 20) - отрисовка изображения Напомню, что существует такая конструкция, как деструктивное присваивание. Она присваивает переменной значение элемента массива. extract(imgw, imgh) = getImageSize(img)
Что равносильно: size = getImageSize(img)
imgw = size[0]
imgh = size[1]
__________________
let live Изменено aNNiMON (29.02 / 12:22) (всего 2 раза)
Прикрепленные файлы: OwnLangME.png (1.25 кб.) Скачано 198 раз |
2.03.2016 / 13:19 | |
aNNiMON Супервизор Сейчас: Offline
Имя: Витёк Регистрация: 11.01.2010
| Обновил версию для Android. Добавил сборку apk. Большие модули (http) упаковываются только если они используются в программе. Разрешения тоже выставляются в зависимости от использования модулей. Пример собранного приложения: __________________
let live Изменено aNNiMON (2.03 / 13:22) (всего 1 раз)
Прикрепленные файлы: GithubTimeline.apk (226.91 кб.) Скачано 365 раз |
3.03.2016 / 09:05 | |
19Ram84 Пользователь Сейчас: Offline
Регистрация: 30.08.2015
| Аннимон, вот это супер, уже и сборка в апк Всё таки ты МЕГА кодер! Спасибо за труды. |
4.03.2016 / 20:42 | |
aNNiMON Супервизор Сейчас: Offline
Имя: Витёк Регистрация: 11.01.2010
| Добавил REPL в последней версии для ПК. Вводим команды поочерёдно и они сразу же исполняются. Как реализованы многострочные выражения Как реализованы многострочные выражения final StringBuilder buffer = new StringBuilder();
final Scanner scanner = new Scanner(System.in);
while (scanner.hasNextLine()) {
final String line = scanner.nextLine();
if (":exit".equalsIgnoreCase(line)) break;
if (":reset".equalsIgnoreCase(line)) {
buffer.setLength(0);
continue;
}
buffer.append(line).append(System.lineSeparator());
try {
final Program program = parser.parse(buffer.toString());
if (parser.hasErrors()) {
// Если здесь произошла ошибка парсинга, значит выражение
// введено не полностью, поэтому буфер не сбрасываем, таким
// образом накапливая текст программы, пока не распарсится
continue;
}
program.execute();
} catch (LexerException lex) {
// Ошибка лексера может произойти, если вводится многострочный
// текст, так что буфер тоже не сбрасываем
continue;
} catch (Exception ex) {
ex.printStackTrace();
}
buffer.setLength(0);
}
scanner.close();
Полный исходный код тут. __________________
let live
Прикрепленные файлы: ownlang-repl.png (2.65 кб.) Скачано 150 раз |
4.03.2016 / 21:19 | |
Jahak Пользователь Сейчас: Offline
Имя: Константин Регистрация: 16.01.2012
| aNNiMON, на твой пост ( #457437) отвечу, GithubTimeline.apk GithubTimeline.apk ********************************** * Prints current GitHub timeline * ********************************** 2016-03-04 19:13:47 ********************************** * Prints current GitHub timeline * **********************************
Array or map expected in main at foreach: com.annimon.ownlang.lib.modules.functions.functional_foreach@41ec8dd8
com.annimon.ownlang.exceptions.TypeException: Array or map expected at com.annimon.ownlang.parser.ast.ContainerAccessExpression.getContainer(Unknown Source) at com.annimon.ownlang.parser.ast.ContainerAccessExpression.get(Unknown Source) at com.annimon.ownlang.parser.ast.ContainerAccessExpression.eval(Unknown Source) at com.annimon.ownlang.parser.ast.BinaryExpression.eval(Unknown Source) at com.annimon.ownlang.parser.ast.AssignmentExpression.eval(Unknown Source) at com.annimon.ownlang.parser.ast.AssignmentExpression.execute(Unknown Source) at com.annimon.ownlang.parser.ast.BlockStatement.execute(Unknown Source) at com.annimon.ownlang.lib.UserDefinedFunction.execute(Unknown Source) at com.annimon.ownlang.lib.modules.android.lambda$null$2(Unknown Source) at com.annimon.ownlang.lib.modules.android.access$lambda$3(Unknown Source) at com.annimon.ownlang.lib.modules.android$$Lambda$4.run(Unknown Source) at android.os.Handler.handleCallback(Handler.java:733) at android.os.Handler.dispatchMessage(Handler.java:95) at android.os.Looper.loop(Looper.java:157) at android.app.ActivityThread.main(ActivityThread.java:5633) at java.lang.reflect.Method.invokeNative(Native Method) at java.lang.reflect.Method.invoke(Method.java:515) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:896) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:712) at dalvik.system.NativeStart.main(Native Method)
2016-03-04 19:13:47 User: https://github.com/aminought created repository on https://github.com/AkiryaTeam/DDDEngine -------------------------------------------------- 2016-03-04 19:13:47 User: https://github.com/jycouet start watching repository https://github.com/AngularClass/angular2-webpack-starter -------------------------------------------------- 2016-03-04 19:13:47 User: https://github.com/jlauha pushed 1 commits to https://github.com/rameplayerorg/rameplayer-backend -------------------------------------------------- 2016-03-04 19:13:46 User: https://github.com/CodePipeline-Test pushed 1 commits to https://github.com/CodePipeline-Test/feature-tests -------------------------------------------------- 2016-03-04 19:13:46 User: https://github.com/jechols pushed 1 commits to https://github.com/uoregon-libraries/pdf-to-chronam -------------------------------------------------- 2016-03-04 19:13:46 User: https://github.com/mike-engel deleted branch on https://github.com/mike-engel/bkmrkd -------------------------------------------------- 2016-03-04 19:13:46 User: https://github.com/zshamsi2 pushed 1 commits to https://github.com/zshamsi2/Ancestral-Scripts -------------------------------------------------- 2016-03-04 19:13:46 User: https://github.com/mgrzeszczak created repository on https://github.com/mgrzeszczak/rl-controller-android -------------------------------------------------- 2016-03-04 19:13:46 User: https://github.com/steveeJ commented issue Bind to a single host IP when forwarding ports. on https://github.com/coreos/rkt First, thanks for this suggestion!
To not get anyone confused let me help you with the wording a little: In case of port forwarding, the host doesn't technically bind the ports. Ports are bound by the pod's applications. By using `--port` you instruct rkt to setup iptables rules on the host that cause the traffic from all of the host's addresses (including *127.0.0.1* for recent rkt versions) to be forwarded to the pod.
Your suggestion is to be able to restrict the host's IP addresses that are affected by these rules, correct? Which use-case did you have in mind here? One I can think is if you wanted to serve with different pods on the same external port but for different addresses. -------------------------------------------------- 2016-03-04 19:13:46 User: https://github.com/hifi-gustavo commented issue recover stability of arm IK on https://github.com/highfidelity/hifi Build console output for commit: 9bf4a30a232b9008c741effe53263789101bd3f5 available at: https://gist.github.com/3a50fd...lt;br/>Installers available for download at: <br/>Windows: http://s3.amazonaws.com/hifi-p...246.exe<br/>OS X: http://s3.amazonaws.com/hifi-p...ity-Alpha-PR7246.dmg -------------------------------------------------- 2016-03-04 19:13:46 User: https://github.com/bendiy pushed 1 commits to https://github.com/bendiy/qt-client -------------------------------------------------- 2016-03-04 19:13:46 User: https://github.com/betacar commented issue Dynamic client-side PDF generation on https://github.com/JavascriptChile/Meetups @fforres @Xabadu Lighting talk will be!
How much time should be? I'll only need a projector.
Maybe a Jet, and a Llama, and a Jet for my Llama. But that's optional. -------------------------------------------------- 2016-03-04 19:13:46 User: https://github.com/CodePipeline-Test created branch on https://github.com/CodePipeline-Test/feature-tests -------------------------------------------------- 2016-03-04 19:13:46 User: https://github.com/livarcocc commented issue Publish signed MSI for daily builds. on https://github.com/dotnet/cli The cert issue should be fixed now. I had the account updated with the right certs. -------------------------------------------------- 2016-03-04 19:13:46 User: https://github.com/akanjain pushed 1 commits to https://github.com/akanjain/CS108QuizWebProject -------------------------------------------------- 2016-03-04 19:13:46 User: https://github.com/Zer0v87 commented issue Can you please explain to me how to run this? on https://github.com/programa-stic/snapchat-decrypt So I have I have to run the script on my PC, with my phone plugged into it. Right? -------------------------------------------------- 2016-03-04 19:13:45 User: https://github.com/spirentNilesh pushed 1 commits to https://github.com/spirentNilesh/Hello-World -------------------------------------------------- 2016-03-04 19:13:45 User: https://github.com/laralfield pushed 1 commits to https://github.com/simmerwp/simmer -------------------------------------------------- 2016-03-04 19:13:45 User: https://github.com/hallahan opened issue 'Form Upload: DnD & File Name' on https://github.com/AmericanRedCross/OpenMapKitServer -------------------------------------------------- 2016-03-04 19:13:45 User: https://github.com/lilpea pushed 1 commits to https://github.com/lilpea/dreamcastbot -------------------------------------------------- 2016-03-04 19:13:45 User: https://github.com/jeff1evesque opened pull request #425 '#424: Create 'rhel_07_040500.pp'' on https://github.com/jeff1evesque/drupal-demonstration -------------------------------------------------- 2016-03-04 19:13:45 User: https://github.com/LombiqBot pushed 0 commits to https://github.com/Lombiq/Orchard-Scripting-Extensions-DotNet -------------------------------------------------- 2016-03-04 19:13:45 User: https://github.com/LombiqBot pushed 0 commits to https://github.com/Lombiq/Orchard-Read-only -------------------------------------------------- 2016-03-04 19:13:45 User: https://github.com/erasche commented issue Uninstall? on https://github.com/erasche/gxargparse Hi @zfrenchee, how did you install gxargparse?
If you installed it with `python setup.py install`, it should be as simple as `pip uninstall gxargparse` -------------------------------------------------- 2016-03-04 19:13:45 User: https://github.com/apulliam pushed 0 commits to https://github.com/apulliam/ModularARM -------------------------------------------------- 2016-03-04 19:13:45 User: https://github.com/sofysch pushed 1 commits to https://github.com/sofysch/GrandeXO -------------------------------------------------- 2016-03-04 19:13:45 User: https://github.com/LombiqBot pushed 0 commits to https://github.com/Lombiq/Orchard-Scripting-Extensions-DotNet -------------------------------------------------- 2016-03-04 19:13:45 User: https://github.com/draschke forked repository https://github.com/open-xml-templating/docxtemplater -------------------------------------------------- 2016-03-04 19:13:45 User: https://github.com/zehaeva created branch on https://github.com/zehaeva/angular2-tutorial --------------------------------------------------
Круто! Я наконец-то собрал свое первое Hello World на Android и оно заработало! |
4.03.2016 / 21:27 | |
Jahak Пользователь Сейчас: Offline
Имя: Константин Регистрация: 16.01.2012
| aNNiMON, Можешь сделать что бы при проверке например println (7 == 7) выводило булев тип точнее что бы за место 0 и 1 было false и true. Просто так привычнее и более понятно |
4.03.2016 / 21:32 | |
Jahak Пользователь Сейчас: Offline
Имя: Константин Регистрация: 16.01.2012
| Вотс..
Прикрепленные файлы: JahakApp.apk (95.09 кб.) Скачано 272 раза |
4.03.2016 / 21:40 | |
ДубоХирург Пользователь Сейчас: Offline
Имя: Сергей Откуда: Где-то возле Москвы Регистрация: 01.07.2012
| Jahak, лучше опцию
|