repost: Building a Web API using Express.js, Bun and MongoDB | Tharaka Romesh | Bits and Pieces Web APIs serve as the central components of modern software, seamlessly connecting applications across the expansive landscape of the internet. If you’re working with Node.js, you’re most likely familiar...

# Node Oracle # Resource node-oracledb: Node.js module for Oracle Database Node.js Sequelize with Oracle Database — it’s official | by Christopher Jones | Oracle Developers | Medium # Oracle Set Up Create table in Oracle 11g. 12345678910111213141516create table posts ( id number, title...

# Elysia Elysia - Ergonomic Framework for Humans | ElysiaJS TypeScript with End-to-End Type Safety, unified type system and outstanding developer experience. Supercharged by...

# Streamlit Streamlit • A faster way to build and share data apps Streamlit turns data scripts into shareable web apps in minutes. All in pure Python. No front‑end experience required. # Timezone Converter 1234567891011121314151617181920212223242526272829303132333435363738from datetime import...

# Create Directory 12345create directory EDI_TEST as '/usr/tmp/edi/test';select * from all_directories where directory_name like '%EDI%'; OWNER DIRECTORY_NAME DIRECTORY_PATH SYS EDI_TEST /usr/tmp/edi/test Set Directory Access Permissions 1234567[testmgr@erptest...

from: oracle sql practice exercises with solutions - YouTube # Select alternate records 1234567select * from (select empno, sal, rownum as rn from scott.emp order by empno) where mod(rn, 2) = 0; select * from (select empno, sal, rownum as rn from scott.emp order by empno) where mod(rn, 2) = 1; #...

repost: SQL Features Tutorials: MODEL Clause # MODEL Clause This section presents tutorials on the MODEL clause of the SELECT command. Introduced in Oracle 10g, the MODEL clause is a powerful feature that gives you the ability to change any cell in the query’s result set using data from any other...

repost: SSCC-18 Barcodes - GS1-128 INFOGS1-128 INFO # Application Identifier (AI) The AI “00” indicates the SSCC-18 data structure will follow. # Extension Digit The Extension Digit has no defined logic and is used to increase the capacity of the Serial Reference # GS1 Company Prefix GS1 Company...

repost: What is a Blob object in JavaScript? A Blob object is a versatile container for files and data. Though it stands for Binary Large Object, it is also used to contain small amounts of data. By placing files or file-like objects in a Blob, various methods become available that can be useful...

repost: SVG filters · WebPlatform Docs # Summary This guide shows you how to build SVG image processing filters to create interesting visual effects. It shows how to apply these effects within an SVG graphic, and how to apply them to HTML content using the filter CSS property. The power of SVG...