Для реализации данного процесса нам понадобится библиотека html-to-excel (исходный код этого приложения на странице https://github.com/pofider/html-to-xlsx).
Читать далее «Преобразование HTML таблицы в Excel на NodeJS»PostgreSQL размер таблиц и индексов
SELECT TABLE_NAME, pg_size_pretty(table_size) AS table_size, pg_size_pretty(indexes_size) AS indexes_size, pg_size_pretty(total_size) AS total_size FROM ( SELECT TABLE_NAME, pg_table_size(TABLE_NAME) AS table_size, pg_indexes_size(TABLE_NAME) AS indexes_size, pg_total_relation_size(TABLE_NAME) AS total_size FROM ( SELECT ('"' || table_schema || '"."' || TABLE_NAME || '"') AS TABLE_NAME FROM information_schema.tables ) AS all_tables ORDER BY total_size DESC ) AS pretty_sizes
Оригинал: Naik’s blog PostgreSQL размер таблиц и индексов — Naik’s blog (kesh.kz)
Сбор основных показателей PostgreSQL
Настраиваем периодический сбор данных при помощи psql:
sudo su - postgres crontab -e # добавляем следующий код */15 * * * * psql -U postgres -d postgres -c "SELECT datname, xact_commit, now(), numbackends FROM pg_stat_database where datname = 'cic-release-db' or datname = 'hangfire'" >> /var/lib/postgresql/pg_stat_database.log
Примечание: имена таблиц в pg_stat_database указывать свои.
Читать далее «Сбор основных показателей PostgreSQL»Вывод собственного меню в фрагменте
You need to use menu.clear() before inflating menus.
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
menu.clear();
inflater.inflate(R.menu.menu, menu);
super.onCreateOptionsMenu(menu, inflater);
}
and
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setHasOptionsMenu(true);
}
How to add Options Menu to Fragment in Android — Stack Overflow
Скрыть список пользователей на главной странице Pentaho
Disable Login Evaluation BI Server 5.0.1 (pentaho.com)
Hi,
I found a solution: in biserver-ce\pentaho-solutions\system\pentaho.xml modify:
<login-show-sample-users-hint>true</login-show-sample-users-hint>
to
<login-show-sample-users-hint>false</login-show-sample-users-hint>
regards.
Создания скриншотов для AppStore
Для подключения iTunes допустимы следующие разрешения:
- iPhone 3 + 4 (3,5 дюйма)
- 640 х 960
- iPhone 5, iPhone 5S, iPhone 5C (4 дюйма)
- 640 х 1136
- iPhone 6, iPhone 6S, iPhone 7, iPhone 8 (4,7 дюйма)
- 750 х 1334
- iPhone 6 Plus, iPhone 6S Plus, iPhone 7 Plus, iPhone 8 Plus (5,5 дюймов)
- 1242 x 2208
- Вам нужен скриншот в этом разрешении, телефон масштабирует их до 1080 х 1920
- iPhone X (5,8 дюйма)
- 1125 x 2436
- iPhone XR (6,1 дюйма)
- 828 х 1792
- iPhone XS (5,8 дюйма)
- 1125 x 2436
PLV8 для Postgres 12
Если пытаться установить на Ubuntu 20.04 postgresql-plv8, то будет ошибка, что пакет не найден.
Для установки данного расширения на указанную выше ОС нужно собрать этот пакет вручную.
$ wget https://github.com/plv8/plv8/archive/v3.0.0.tar.gz $ tar -xvzf v3.0.0.tar.gz $ cd plv8-3.0.0 $ make
Возможные проблемы:
Нужно проверить если все эти программы, если нет, то установить:
Git g++ or clang++ Python 2 (for v8) pkg-config (linux only for v8) libc++-dev (linux only) libc++abi-dev (linux only) libglib2.0-dev (ubuntu 20.04) libtinfo5 (ubuntu 20.04) ninja-build (ubuntu arm64)
- Может отсутствовать make (apt install make)
- Не будет ссылки на python
/usr/bin/env: ‘python’: No such file or directory
Устанавливаем python второй версии:
sudo apt install python2
И настраиваем ссылку:
sudo ln -s /usr/bin/python2 /usr/bin/python
- Сборка закончилась с ошибкой: тут проще удалить каталог plv8-3.0.0 и заново запустить установку.
- How to fix ‘postgres.h’ file not found problem?
sudo apt install postgresql-server-dev-12
Официальный сайт: PLV8 Documentation
Деобфускация кода exception в Firebase Crashlytics после падения приложения
Чтобы сделать код исключений в Firebase Crashlytics более читабельным все что нужно — это добавить эти три строчки в файл proguard-rules.pro:
-keepattributes *Annotation*Читать далее «Деобфускация кода exception в Firebase Crashlytics после падения приложения»
-keepattributes SourceFile,LineNumberTable
-keep public class * extends java.lang.Exception
Отмена кэширования в Pentaho Report
Option1: You can navigate to \biserver-ee\tomcat\webapps\pentaho\WEB-INF\classes and change the configuration file «ehcache.xml»
<cache name="report-dataset-cache"
maxElementsInMemory="50"
eternal="false"
overflowToDisk="false"
timeToIdleSeconds="1"
timeToLiveSeconds="2"
diskPersistent="false"
diskExpiryThreadIntervalSeconds="1"
/>
If you have done that and still no positive answer, I think you have not restarted the BA server. If the issue still exists comment below.
caching — How to clear cache in Pentaho — Stack Overflow
Option2: I have had the same problem — I get data from a report via a mondrian cube but when the data in DB changes, it is not reflected in the report unless i logout and login again. (i have also set report-cache to false and also in the cube definition cache is set to false).
Here is how i fixed it.
1) in pentaho-solutions\system\mondrian\mondrian.properties» — set «mondrian.rolap.star.disableCaching=» to true
2) in tomcat\tomcat\webapps\pentaho\WEB-INF\classes\classic-engine.properties add the line — org.pentaho.reporting.engine.classic.core.cache.DataCache=
3) in tomcat\tomcat\webapps\pentaho\WEB-INF\classes\ehcache.xml for cache name «mondrian-catalog-cache» set timeToIdleSeconds and timeToLiveSeconds to a small value, say 5
What is interesting is that if i do steps 1 and 2 it works for some reports, and for some reports just step 3 suffices. So for now i have done all three steps.
I am not sure if this will work for you since this approach is based on trial and error rather an understanding of how ehcache works in in the pentaho+mondrian setup.
So while it works for me , there is not a good feeling of comfort that this is the way to do it. Hopefully someone from the pentaho team can throw some light on this.
regards
-anish
Java Decompiler
The “Java Decompiler project” aims to develop tools in order to decompile and analyze Java 5 “byte code” and the later versions.
JD-GUI is a standalone graphical utility that displays Java source codes of “.class” files. You can browse the reconstructed source code with the JD-GUI for instant access to methods and fields.
JD-Eclipse is a plug-in for the Eclipse platform. It allows you to display all the Java sources during your debugging process, even if you do not have them all.
JD-Core is a library that reconstructs Java source code from one or more “.class” files. JD-Core may be used to recover lost source code and explore the source of Java runtime libraries. New features of Java 5, such as annotations, generics or type “enum”, are supported. JD-GUI and JD-Eclipse include JD-Core library.
JD-Core, JD-GUI & JD-Eclipse are open source projects released under the GPLv3 License.