BLUE💙nerdscript.hashnode.dev·Sep 23, 2024Google ドライブから node_modules などを除外する方法ほとんどのプロジェクトは Github などでバージョン管理をしており、定期的に push しているはずだ。しかし、Github には push しないけれど、バックアップを取っておきたいファイルというのもある。 ただし、何も設定をしないまま同期をすると node_modules や .git などの容量が大きめのディレクトリが、いい感じに同期されない。どうやらシンボリックリンクがあると、同期にエラーが起きるようだ。 というわけで、以下の方法でいい感じに同期しちゃいましょう。 前提 Mac ...DiscussGoogle 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...Discusstaxprep
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...DiscussGoogle
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 ...Discuss·2 likes·201 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...Discuss·1 like·499 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...Discuss·2 likes·641 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...Discuss·2 likes·373 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...Discussgoogle 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. ...Discuss·28 readsBackup
Ajinkya Palaskarajinkyap.hashnode.dev·Jan 9, 2024Uploading folders and files to Shared Drives using Next.js API route handlersRecently I had a requirement in my project to programmatically create folders inside Shared Drives and upload files to those folders. I could not find any proper resource on how to do this. So I am writing this blog to help others who might come acro...Discuss·1 like·684 readsNext.js