GreenFluxblog.greenflux.us·Nov 23, 2024Extracting All Images From A Google Doc Using PythonGoogle makes it as easy as possible to add new images to a Google Doc, with options like drag-and-drop, paste from clipboard, insert from Drive/URL, etc. But they make it surprisingly hard to get the images back out! I’ve written about this before [b...37 readsPython
BLUE💙nerdscript.hashnode.dev·Sep 23, 2024Google ドライブから node_modules などを除外する方法ほとんどのプロジェクトは Github などでバージョン管理をしており、定期的に push しているはずだ。しかし、Github には push しないけれど、バックアップを取っておきたいファイルというのもある。 ただし、何も設定をしないまま同期をすると node_modules や .git などの容量が大きめのディレクトリが、いい感じに同期されない。どうやらシンボリックリンクがあると、同期にエラーが起きるようだ。 というわけで、以下の方法でいい感じに同期しちゃいましょう。 前提 Mac ...Google Drive
Girish Vgirishv.hashnode.dev·Sep 23, 2024Building a Personal and Corporate Quickbook for Tax and Expense Management Using OpenSource ToolsManaging bills and expenses can be challenging, especially when preparing for tax season or managing corporate finances. To streamline this process, I developed an open-source QuickBook tracker application that utilizes various open-source tools. Thi...taxprep
Emma Delayfuturisticinnovative.hashnode.dev·Jun 18, 2024Empower Your Research with Google Plus LookupGoogle Plus Lookup is your ultimate solution for harnessing the power of Google Plus data. Our platform provides a comprehensive and intuitive way to search, analyze, and leverage information from Google Plus profiles and posts, helping businesses, r...Google
Wojciech Sowawsowa.hashnode.dev·May 29, 2024Building Database Views with Google Drive APIIntroduction Welcome to my next article, which was created based on my collaboration with Steven Feuerstein. I would like to present and describe one of the business requirements that Steven wanted to achieve. The following analysis will be based on ...2 likes·208 readsOracle APEX meets Google API: Let's Dance Together#oracle-apex
Wojciech Sowawsowa.hashnode.dev·May 24, 2024APEX Integration with Google Drive in Pure PL/SQL with Google Service AccountIntroduction Welcome to my post about integrating an APEX application with Google Drive (or any Google API in general) using Service Account credentials, all created in PL/SQL. If you are asking yourself what kind of problem I am going to solve, plea...1 like·523 readsOracle APEX meets Google API: Let's Dance Together#oracle-apex
Wojciech Sowawsowa.hashnode.dev·May 19, 2024APEX Integration with Google Drive on Javascript Side as an APEX PluginIntroduction Welcome to my post on integrating an APEX application with Google Drive (or any Google API in general) using a JavaScript approach. If you are asking yourself what kind of problem I am going to solve, please read my introduction post whi...2 likes·661 readsOracle APEX meets Google API: Let's Dance Together#oracle-apex
Wojciech Sowawsowa.hashnode.dev·May 12, 2024Using My Skills to Help Heal the Planet: The beginningIntroduction I remember the moment when I started my career as an Oracle Developer. It was back in 2016 when I participated in extra Oracle classes at my university and a trainee program at one of the biggest IT companies in Poland. I wasn't really s...2 likes·381 readsOracle APEX meets Google API: Let's Dance Together#oracle-apex
MAHBUBUL ALAMpromahbubul.hashnode.dev·Apr 23, 2024Automatic google spreedshet page pdf save in google drivefunction onOpen() { const ui = SpreadsheetApp.getUi(); ui.createMenu('MENU') .addItem('PDF','makePDF') .addItem('Clear Routine','clear') .addToUi(); } function clear() { var spreadsheet = SpreadsheetApp.getActive(); spreads...google spreedshet
Kunal Mauryakunalmaurya.hashnode.dev·Jan 14, 2024Automated Backup and Rotation ScriptThis script is a Bash shell script designed to automate the backup, rotation, and deletion of backups for a specified GitHub repository. The script includes options for daily, weekly, and monthly backups and utilizes Google Drive for backup storage. ...29 readsBackup