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
[~/libreoffice] | |
✘ devansh 132007_improve_pswd_msg_lckd_dcmnt SAL_USE_VCLPLUGIN=gen make CppunitTest_uui_dialogs_test | |
make -j 3 -rs -f /home/devansh/libreoffice/Makefile.gbuild CppunitTest_uui_dialogs_test | |
[CUT] uui_dialogs_test | |
Aborted (core dumped) | |
LO_TEST_LOCALE=en-US | |
[_RUN_____] UuiDialogsTest::openAnyDialog | |
cppunittester: /home/devansh/libreoffice/vcl/source/window/layout.cxx:1580: virtual const vcl::Window* VclFrame::get_child() const: Assertion `GetChildCount() == 2 || pWindowImpl->mbInDispose' failed. | |
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
[UIA] writerperfect | |
Suppression file: /home/devansh/libreoffice/solenv/sanitizers/ui/vcl.suppr | |
False positive file: /home/devansh/libreoffice/solenv/sanitizers/ui/vcl.false | |
vcl/uiconfig/ui/printdialog.ui: WARNING: 'GtkLabel' 'labelcopies' does not specify what it labels within 'GtkFrame' 'frPrintRange' | |
vcl/uiconfig/ui/printdialog.ui: WARNING: 'GtkLabel' 'includeevenodd' does not specify what it labels within 'GtkFrame' 'frPrintRange' | |
vcl/uiconfig/ui/printdialog.ui: WARNING: 'GtkLabel' 'pagespersheettxt' does not specify what it labels within 'GtkFrame' 'layoutframe' | |
3 new warnings (46 suppressed by /home/devansh/libreoffice/solenv/sanitizers/ui/vcl.suppr, please fix them) | |
0 new fatals (7 suppressed by /home/devansh/libreoffice/solenv/sanitizers/ui/vcl.suppr, please fix them) | |
Explanations are available on https://wiki.documentfoundation.org/Development/Accessibility |
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
```bash | |
[~/libreoffice] | |
devansh new_51779_support_for_sql_interval - make | |
mkdir -p /home/devansh/libreoffice/instdir | |
/home/devansh/libreoffice/solenv/bin/install-gdb-printers -a /home/devansh/libreoffice/instdir -c | |
make -j 4 -rs -f /home/devansh/libreoffice/Makefile.gbuild build | |
[UNO] offapi | |
[DBc] offapi | |
[SED] CustomTarget/desktop/soffice/soffice.sh |
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
[~/libreoffice] | |
devansh 97448_pyHelper_addons_generator cd /home/devansh/libreoffice ; /usr/bin/env /bin/python3 /home/devansh/.vscode/extensions/ms-python.debugpy-2024.2.0-linux-x64/bundled/libs/debugpy/adapter/../../debugpy/launcher 43529 -- /home/devansh/libreoffice/odk/source/helper/addon_console.py | |
Welcome to the LibreOffice Addons Configuration Tool! | |
Enter addon name (extID name, e.g., com.<companyname>.<company-namespace>.<extension-namespace>): org.libreoffice.TuesdayPrinter | |
Do you want to create the 'AddonMenu' item (Tools > Add-ons)? (y/n): n | |
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
defmodule Day2 do | |
def run do | |
file_path = Path.expand("./day2_input.txt") | |
total_red = 12 | |
total_green = 13 | |
total_blue = 14 | |
total_valid_game_ids = | |
File.stream!(file_path) |
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
phoenix main ≡ mix test | |
==> mime | |
Compiling 1 file (.ex) | |
Generated mime app | |
==> phoenix_pubsub | |
Compiling 11 files (.ex) | |
Generated phoenix_pubsub app | |
==> plug_crypto | |
Compiling 5 files (.ex) | |
Generated plug_crypto app |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Verifying my Blockstack ID is secured with the address 1KGo2mF1iRcpSK5d5aWNqea4kp5zL2cTT5 https://explorer.blockstack.org/address/1KGo2mF1iRcpSK5d5aWNqea4kp5zL2cTT5 |
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
#include <bits/stdc++.h> | |
using namespace std; | |
int main() { | |
vector <int> V; | |
V.push_back(1); | |
V.push_back(2); | |
V.push_back(5); | |
V.push_back(7); | |
V.push_back(9); |
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
#include <bits/stdc++.h> | |
using namespace std; | |
int main() | |
{ | |
vector <int> A; | |
for(int i=0; i<10; i++){ | |
int N; | |
cin>>N; | |
A.push_back(N); | |
} |
NewerOlder