new feature

Chrome Just Added Great New Features For iPhones As Apple Pitches Safari Privacy

Even as Apple continues its Safari privacy push, iPhone and iPad users who use Google Chrome are about to see several new features added to their browser of choice. Chrome will be receiving an upgrade to Google Lens, integration with Drive and Photos, improved Shopping Insights, and a more seamless way of finding a way around with Maps. With




new feature

How to use Search and other new features in the iOS 18 Journal app

The release of iOS 18 brought a number of new features to Apple's Journal app, including the new ability to search and sort entries.


Some of the many new features that came to the Journal app in iOS 18. Image credit: Apple

Apple's Journal app was originally introduced in December 2023 alongside iOS 17. In October 2024, it received its first major update, as part of the iOS 18 upgrade.

There's new support for noting one's state of mind, if desired, along with the ability to print individual entries, and more. The biggest new addition to Journal in iOS 18, though, is the arrival of search and sort functionality.


Continue Reading on AppleInsider | Discuss on our Forums




new feature

Google Chrome for iOS Receives Shopping Insights, Other New Features

Google Chrome for iOS has rolled out several new features that aim to make finding information and completing tasks easier. The web browser now lets iPhone users add text queries to visual searches via Google Lens for more helpful and relevant results. It also introduces new ways to save space on iPhone, find better deals while shopping online, and view maps of addresses quickly.




new feature

World of Warcraft dev confirms new feature that has been requested by fans for 10 years



EXCLUSIVE: World of Warcraft will finally add player housing next year, and we got to speak to Executive Producer Holly Longdale about how long fans have been asking for it




new feature

Fitbit Ace LTE has new features to bring the whole family together

New features for Fitbit Ace LTE helps bring the family closer together and gives kids new ways to move.




new feature

Hike Messenger Grows Big, Launches Three New Features

In a direct threat to Snapchat, India's first homegrown messaging app hike messenger on Thursday rolled out three new features — Stories, a built-in camera and live filters — and withdrew "Timeline" feature that was rolled out last year.




new feature

SplineTech JavaScript Debugger PRO update boosts unique new features

Spline Technologies Corporation announces a major update to SplineTech JavaScript Debugger PRO, an independent standalone Web development tool that enables Web developers to easily edit and debug JavaScript and VBScript inside HTML and AJAX pages, without the need for any add-ons, plugins or changes of their code to handle the debugging process. Client-side JavaScript, JScript and client-side VBScript debugging languages are fully supported for simple and complex HTML, DHTML and AJAX debugging scenarios.

 SplineTech JavaScript Debugger PRO offers following main features to address the most common Web development issues:

 - Advanced form debugging for JavaScript form validation - Programmers to cause order forms to validate in clients' browser windows before they are submitted.
 - JavaScript pop-up debugging
 - Debug DHTML menus and JavaScript menus
 - Debug JavaScript and VBScript events: Debug JavaScript Pop-ups, onclick, onmouseover, onfocus and any
 other event.
 - Debug DHTML behavior
 - Debug client-side JavaScript controls: Debug calendars and any other control
 - Multi-Functional VBScript and JavaScript script editor for HTML and AJAX
 - Full Support for native VBScript and JavaScript syntax (color-coded)
 - Explicit JavaScript runtime error information
 - Execution line highlighting: Display the current line of the code to be executed

 Aside from a vast array of main features, this major update of SplineTech JavaScript Debugger PRO includes these new and unique features:
 - Pause code execution in 3, 5 or more seconds (user adjustable)
 - Reformat unreadable JavaScript and AJAX scripts (turns large one-line AJAX scripts into properly formatted readable multi-line code)
 - Step Through multiple lines of code at once (user adjustable)
 - Go back (and forth) to any step within your code
 - Call Stack enables developers to view all function names taken from function lists (since IE reports most of them as anonymous)
 - View all current variables in a dedicated Current Variables panel

 Without requiring any manual configuration or network configuration, SplineTech JavaScript Debugger PRO runs on the Windows 7/2008/2000/2003/XP and Windows Server 2008 platforms (both x86 and x64) with Microsoft Internet Explorer 6.0 or better.

 SplineTech JavaScript Debugger PRO is priced at $90 per single-user license, and is available for purchase at
 http://www.RemoteDebugger.com/javascript_debugger/javascript_debugger.asp

 Immediate online product delivery and full support is included with all Spline Technologies products.

 ABOUT:
 Spline Technologies Corporation is a growing dynamic international software development company, specializing in web development tools, with headquarters in beautiful downtown Montreal, Canada, since 1999.




new feature

SQL*Plus error logging – New feature release 11.1

articles: 

One of the most important things that a developer does apart from just code development is, debugging. Isn’t it? Yes, debugging the code to fix the errors that are raised. But, in order to actually debug, we need to first capture them somewhere. As of now, any application has it’s own user defined error logging table(s).

Imagine, if the tool is rich enough to automatically capture the errors. It is very much possible now with the new SQL*PLus release 11.1

A lot of times developers complain that they do not have privilege to create tables and thus they cannot log the errors in a user defined error logging table. In such cases, it’s a really helpful feature, at least during the unit testing of the code.

I made a small demonstration in SCOTT schema using the default error log table SPERRORLOG, hope this step by step demo helps to understand easily :

NOTE : SQL*Plus error logging is set OFF by default. So, you need to “set errorlogging on” to use the SPERRORLOG table.

SP2 Error

Copyright (c) 1982, 2010, Oracle.  All rights reserved.

Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> desc sperrorlog;
 Name                                      Null?    Type
 ----------------------------------------- -------- ----------------------------

 USERNAME                                           VARCHAR2(256)
 TIMESTAMP                                          TIMESTAMP(6)
 SCRIPT                                             VARCHAR2(1024)
 IDENTIFIER                                         VARCHAR2(256)
 MESSAGE                                            CLOB
 STATEMENT                                          CLOB

SQL> truncate table sperrorlog;

Table truncated.

SQL> set errorlogging on;
SQL> selct * from dual;
SP2-0734: unknown command beginning "selct * fr..." - rest of line ignored.
SQL> select timestamp, username, script, statement, message from sperrorlog;

TIMESTAMP
---------------------------------------------------------------------------
USERNAME
--------------------------------------------------------------------------------

SCRIPT
--------------------------------------------------------------------------------

STATEMENT
--------------------------------------------------------------------------------

MESSAGE
--------------------------------------------------------------------------------

11-SEP-13 01.27.29.000000 AM
SCOTT


TIMESTAMP
---------------------------------------------------------------------------
USERNAME
--------------------------------------------------------------------------------

SCRIPT
--------------------------------------------------------------------------------

STATEMENT
--------------------------------------------------------------------------------

MESSAGE
--------------------------------------------------------------------------------

selct * from dual;
SP2-0734: unknown command beginning "selct * fr..." - rest of line ignored.

ORA Error

SQL> truncate table sperrorlog;

Table truncated.

SQL> select * from dula;
select * from dula
              *
ERROR at line 1:
ORA-00942: table or view does not exist

SQL> select timestamp, username, script, statement, message from sperrorlog;

TIMESTAMP
---------------------------------------------------------------------------
USERNAME
--------------------------------------------------------------------------------

SCRIPT
--------------------------------------------------------------------------------

STATEMENT
--------------------------------------------------------------------------------

MESSAGE
--------------------------------------------------------------------------------

11-SEP-13 01.36.08.000000 AM
SCOTT


TIMESTAMP
---------------------------------------------------------------------------
USERNAME
--------------------------------------------------------------------------------

SCRIPT
--------------------------------------------------------------------------------

STATEMENT
--------------------------------------------------------------------------------

MESSAGE
--------------------------------------------------------------------------------

select * from dula
ORA-00942: table or view does not exist

Like shown above, you can capture PLS errors too.

If you want to execute it through scripts, you can do it like this, and later spool the errors into a file. I kept these three lines in the sperrorlog_test.sql file -

truncate table sperrorlog;
selct * from dual;
select * from dula;

SQL> @D:sperrorlog_test.sql;

Table truncated.

SP2-0734: unknown command beginning "selct * fr..." - rest of line ignored.
select * from dula
              *
ERROR at line 1:
ORA-00942: table or view does not exist


SQL> select TIMESTAMP, SCRIPT, STATEMENT, MESSAGE from sperrorlog;

TIMESTAMP
---------------------------------------------------------------------------
SCRIPT
--------------------------------------------------------------------------------

STATEMENT
--------------------------------------------------------------------------------

MESSAGE
--------------------------------------------------------------------------------

11-SEP-13 01.50.17.000000 AM

D:sperrorlog_test.sql;
SP2-0734: unknown command beginning "D:sperror..." - rest of line ignored.


TIMESTAMP
---------------------------------------------------------------------------
SCRIPT
--------------------------------------------------------------------------------

STATEMENT
--------------------------------------------------------------------------------

MESSAGE
--------------------------------------------------------------------------------

11-SEP-13 01.50.27.000000 AM
D:sperrorlog_test.sql
selct * from dual;
SP2-0734: unknown command beginning "selct * fr..." - rest of line ignored.


TIMESTAMP
---------------------------------------------------------------------------
SCRIPT
--------------------------------------------------------------------------------

STATEMENT
--------------------------------------------------------------------------------

MESSAGE
--------------------------------------------------------------------------------

11-SEP-13 01.50.27.000000 AM
D:sperrorlog_test.sql
select * from dula
ORA-00942: table or view does not exist

SQL>

Check Oracle documentation on SPERRORLOG.

In addition to above, if you want to be particularly specific about each session’s error to be spooled into a file you could do this -

SQL> set errorlogging on identifier my_session_identifier

Above mentioned IDENTIFIER keyword becomes a column in SPERRORLOG table. It would get populated with the string value “my_session_identifier”. Now you just need to do this -
SQL> select timestamp, username, script, statement, message
2 from sperrorlog
3 where identifier = 'my_session_identifier';

To spool the session specific errors into a file, just do this -

SQL> spool error.log
SQL> select timestamp, username, script, statement, message
2 from sperrorlog
3 where identifier = 'my_session_identifier';
SQL> spool off




new feature

LXer: CachyOS September Update: Performance Gains and New Features

Published at LXer: Arch-based CachyOS's Sept '24 update boosts performance with PGO optimizations, new zlib-ng, Wayland default for SDDM, and more. Read More......



  • Syndicated Linux News

new feature

LXer: Audacious 4.4.1 Open-Source Audio Player Brings New Features and Improvements

Published at LXer: The Audacious open-source audio player, a descendant of the XMMS media player, has been updated to version 4.4.1, a release that introduces several new features and improvements....



  • Syndicated Linux News

new feature

July 9th 2011 Radio Heritage Foundation - New Feature - Papua New Guinea Radio

One of the most fascinating countries for international shortwave radio listeners continues to be Papua New Guinea... a large archipelago of islands to the immediate north of Australia... mainly because it has some twenty locally operating shortwave radio stations... and also because they seem to operate in a kind of information black hole...




new feature

November 4th 2011 Radio Heritage Foundation - New Feature - This is Station WLKT Miho

In 1946, British announcer Peter Knowlden introduced radio programs to British Commonwealth Occupation Forces at Miho Airfield in Japan with the words This is Station WLKT Miho operating on 14-40 kilocycles and 2-oh-8 metres...




new feature

November 12th 2011 Radio Heritage Foundation - New Feature - VU2ZP Yank Radio....Bangalore: The Brochure

VU2ZP Yank Radio.... Bangalore: The Brochure...




new feature

December 12th 2011 Radio Heritage Foundation - New Feature - 2KM Kempsey

2KM Kempsey 'The Voice of the Macleay'




new feature

December 12th 2011 Radio Heritage Foundation - New Feature - 3BA Ballarat

3BA Ballarat 'The Voice of the Garden City'




new feature

December 12th 2011 Radio Heritage Foundation - New Feature - 2MW Murwillumbah

2MW Murwillumbah 'The Voice of the Far North Coast'




new feature

December 14th 2011 Radio Heritage Foundation - New Feature - 2QN Deniliquin

2QN Deniliquin 'The Riverina Station'




new feature

December 14th 2011 Radio Heritage Foundation - New Feature - 4IP Ipswich

4IP Ipswich 'Your Local Station for Better Entertainment'




new feature

December 16th 2011 Radio Heritage Foundation - New Feature - ZL6RWC Rugby Radio

ZL6RWC Rugby World Cup Radio




new feature

February 23rd 2012 Radio Heritage Foundation - New Feature - Australian AM Radio 1922-2012

Australian Radio 1922-2012 - Amateur Radio DJs lead the way......




new feature

April 19th 2012 Radio Heritage Foundation - New Feature - Art of Amateur Radio Japan : The Quartz Hill Collection

Art of Amateur Radio Japan : A selection of amateur QSLs from the Quartz Hill Collection...




new feature

June 2nd 2013 Radio Heritage Foundation - New Feature: Retro Radio Dial Series 1953

Retro Radio Dial 2013 - 1953 Canada AM




new feature

June 4th 2013 Radio Heritage Foundation - New Feature: Retro Radio Dial Series 1953

Retro Radio Dial 2013 - 1953 North Asia




new feature

June 5th 2013 Radio Heritage Foundation - New Feature: Retro Radio Dial Series 1953

Retro Radio Dial 2013 - 1953 Nordic Europe




new feature

June 17th 2013 Radio Heritage Foundation - New Feature: Retro Radio Dial Series 1953

Retro Radio Dial 2013 - 1953 Iron Curtain Europe




new feature

July 9th 2013 Radio Heritage Foundation - New Feature: Radio 2AP Samoa in 1949

Radio 2AP Samoa in 1949...




new feature

July 11th 2013 Radio Heritage Foundation - New Feature: AES 1 Zee M Auckland

Mosquito Network AES 1ZM Auckland...




new feature

WhatsApp's New Feature to Spot Misleading Images

WhatsApp is testing a reverse image search feature on the web, allowing users to quickly verify the origin and authenticity of received images. Alongside this, WhatsApp is adding a shortcut to the photo gallery for easier access.




new feature

YouTube testing new feature that allows to zoom in on videos

YouTube is experimenting with a feature that allows to zoom in on videos for premium users




new feature

Google Flights Just Announced a New Feature To Find Cheap Flights

Google Flights has released a new feature that allows travelers worldwide to find the best possible airfare deal with one click. The feature is currently being rolled out and should be available globally over the next two weeks. Google Flights Introduces “Cheapest” Tab Look for the new “Cheapest” tab (next to the “Best” tab) to […]

The post Google Flights Just Announced a New Feature To Find Cheap Flights appeared first on Clark Howard.




new feature

New features - My Streaming Services, filter and streaming availability in lists

To help you navigate the messy world of streaming services availability, Next Episode has a few new features: All lists (search, browse, top/discovery charts, watchlist, track episodes) now also show streaming availability You can now filter by streaming services availability In addition, you can add the streaming services you use to My Services and filter through that as wellThis is not just for US - your country should've been automatically detected, but if not - you can easily switch it here. Basically, it should now be easier than ever to find out where your stuff is streaming and find new great shows on the streaming services you use. Our movies section will get the same treatment soon. Let me know your thoughts and as always - if you appreciate my efforts here - consider getting Premium. Thank you!




new feature

New Features and Options for JLG Electric Scissor Lifts, Vertical Lifts and Stock Picker

On Sept. 17, JLG introduced new features for its ES electric scissor lifts, E18 vertical lifts and E18 stock picker, including standard AC drive motors, lithium-ion battery options and a range-extending genset charging option.




new feature

VitroJet: new features and case studies

Single-particle cryo-electron microscopy has become a widely adopted method in structural biology due to many recent technological advances in microscopes, detectors and image processing. Before being able to inspect a biological sample in an electron microscope, it needs to be deposited in a thin layer on a grid and rapidly frozen. The VitroJet was designed with this aim, as well as avoiding the delicate manual handling and transfer steps that occur during the conventional grid-preparation process. Since its creation, numerous technical developments have resulted in a device that is now widely utilized in multiple laboratories worldwide. It features plasma treatment, low-volume sample deposition through pin printing, optical ice-thickness measurement and cryofixation of pre-clipped Autogrids through jet vitrification. This paper presents recent technical improvements to the VitroJet and the benefits that it brings to the cryo-EM workflow. A wide variety of applications are shown: membrane proteins, nucleosomes, fatty-acid synthase, Tobacco mosaic virus, lipid nanoparticles, tick-borne encephalitis viruses and bacteriophages. These case studies illustrate the advancement of the VitroJet into an instrument that enables accurate control and reproducibility, demonstrating its suitability for time-efficient cryo-EM structure determination.




new feature

StoryboardHero announces set of new features

The leading AI storyboard generator adds all features of online storyboarding tools




new feature

SeniorMatch Introduces New Feature: Customizable Text Size for Enhanced User Experience

Personalized Vision Care to Meet the Needs of Senior Users




new feature

articy:draft X update 4.1 brings new features for narrative design and development

articy:draft X, the narrative design tool used by game studios worldwide just launched a new update adding new features for faster and more streamlined scripting.




new feature

Jason McDonald Consulting Announces New Featured Listings in Expert Witness Directories

Jason McDonald Consulting's new featured listings on SEAK Experts, Expert Pages, and Witness Directory highlight its continued dedication to offering expert witness services at the forefront of digital marketing litigation.




new feature

Catheon Gaming CEO William Wu announces new features in the Catheon Gaming Web3 SDK

Catheon Gaming CEO William Wu is proud to announce that it is integrating NFT-related blockchain functionalities into its Catheon Gaming Company (CGC) SDK.




new feature

ETSI NFV announces new features to its architecture to support 5G

ETSI NFV announces new features to its architecture to support 5G

Sophia Antipolis, 1 July 2019

ETSI NFV has enhanced the system as well as designed new features to support 5G networks. Specifically, 5G resource management and orchestration aspects were added on top of the NFV Release 2 architecture framework.

Read More...




new feature

New Feature Maxes Tray Sealer Performance

The GT-Max feature allows both new and existing customers to obtain enhanced performance and more value out of their tray sealing machines.






new feature

Audacity Is Improving Fast! Here Are the Top New Features to Try

The Audacity software is popular among countless podcasters at all levels of production! at some point! It's a free, cross-platform audio-editing app, so almost anyone can use it. But Audacity has historically lagged behind other audio-editing apps until now! So here are some of my favorite new features that I think warrant giving Audacity another try.

The post Audacity Is Improving Fast! Here Are the Top New Features to Try first appeared on The Audacity to Podcast.




new feature

YouTube is testing a new feature that will let a small group of creators use AI to “restyle” licensed songs for their Shorts through prompts

YouTube is testing a new feature that will let creators use AI to “restyle” licensed songs for their shorts. The small group of creators with access can enter a prompt to change up different elements in a song, such as its mood or genre, and the expansion of YouTube’s Dream Track AI feature will…




new feature

New Feature Released – Content Recycling

This is the first release note in 2020. And we are glad to introduce a new feature for our automated content posters – CONTENT RECYCLING. As you know, the main idea of RSS Ground posting services is gradual updates with unique content. Our posting campaigns functionality is built to ensure your blogs and social network […]

The post New Feature Released – Content Recycling appeared first on RSSground.com.




new feature

Delaware Department of Labor Announces New Features and Updates to the Delaware JobLink Website

Wilmington, Delaware February 22, 2021 Delaware Department of Labor FOR IMMEDIATE RELEASE   WILMINGTON, DE – Delaware Department of Labor has added new functionality to the Delaware JobLink (joblink.delaware.gov), a website created to support employers looking for qualified candidates, and individuals seeking employment.   The current website offers individuals the ability to search for jobs, […]




new feature

Google Chrome on iPhones gets new features with Drive, Maps integration - Business Standard

  1. Google Chrome on iPhones gets new features with Drive, Maps integration  Business Standard
  2. Stop Using Chrome On Your iPhone, Warns Apple—Millions Of Users Must Now Decide  Forbes
  3. 4 new Chrome improvements for iOS  The Keyword
  4. Chrome on iOS now lets you search using images and text at the same time  TechCrunch
  5. Google rolls out new features in Chrome for iPhone users  Moneycontrol




new feature

Spatial Dependence, Nonlinear Panel Models, and More New Features in SAS/ETS 14.1

This paper highlights the many enhancements to SAS/ETS software and demonstrates how these features can help your organization increase revenue and enhance productivity.




new feature

Google rolls out new features in Chrome for iPhone users - Moneycontrol

  1. Google rolls out new features in Chrome for iPhone users  Moneycontrol
  2. 4 new Chrome improvements for iOS  The Keyword
  3. Stop Using Chrome On Your iPhone, Warns Apple—Millions Of Users Must Now Decide  Forbes
  4. Chrome 131 for iOS adding new Google Drive, Maps integrations  9to5Google
  5. Chrome for iOS now lets you add text to Google Lens visual searches  Engadget




new feature

YouTube New Features: Precise Playback Speed Controls and Sleep Timer Introduced in Latest Update

YouTube is introducing several updates, seemingly inspired by user suggestions. One of the notable changes is the ability to adjust playback speed in smaller increments of 0.05, compared to the previous 0.25 steps. However, the maximum speed remains capped at 2x.