rem

Will coronavirus play spoilsport for IPL 2020? Maharashtra govt, BCCI differ over postponing Indian Premier League

The IPL is slated to start on March 29 with the opening match between the Mahendra Singh Dhoni-led Chennai Super Kings and Rohit Sharma-led Mumbai Indians in what is arguably the clash of the titans at the Wankhede stadium in Mumbai.




rem

International passenger air travel to remain suspended till April 14

The Covid-19 outbreak has led to unprecedented lockdowns across the world, with many countries shutting their borders and limiting public movement.




rem

Supreme Court to decide on full refund of cancelled air tickets during Covid-19 lockdown

The plea which has been filed by the Pravasi Legal Cell has also requested the court to declare the action of the airlines not refunding the full amount illegal and violative of the Civil Aviation Requirement.




rem

Chandan Yatra, Akshaya Tritiya festivals to take place inside Jagannath temple premises

The annual "Chandan Yatra" and "Akshaya Tritiya" festivals of Lord Jagannath will be held inside the temple premises in Puri on Sunday.




rem

ubi jus ibi remedium

Meaning where there is right there is remedy Pls elaborate its meaning with an example




rem

DCB Bank sees significant jump in foreign remittance services on coronavirus pandemic

"Since March 15, our volumes on outward remittance services have increased many fold. There is a significant difference in before-and-after demand since mid of March," said Praveen Kutty, Head of Retail and SME Banking, DCB Bank without quantifying the increase in demand.




rem

Decision of supreme court bench gs singhvi,gopal gowda.2010

In 2010 recruitment of third gred teacher in Sanskrit Department of Rajasthan the rajasthan High court passed a order on 2 august to dismiss 3rd gred teachers after servicing more than 6 month in sanskrit dept.due to merit list changed by RPSC.This order challenged in supreme court & honorable bench of judge G S SINGHVI ,GOPAL GOWDA & C. NAGAPPaN passed stay order in september 2013 against high court`s dismiss order& issued notice .How Can i know what will happened the final decision of supreme court since it has been long time .




rem

Supreme Court says Virtual Courts are not against the concept of Open Court Hearing

In a recent plea by Bar Council of India chairman to Chief Justice of India, it was advised against continuation of hearing via video-conferencing after the lockdown ends, to maintain judicial transparency. The Supreme Court in a press report has sai




rem

India strongly protests against the recent order of Pakistan Supreme Court to allow elections in Gilgit Baltistan

Pakistan Supreme Court has passed an Order on 30th April to make amendments in the Gilgit Baltistan Order of 2018 to conduct the general assembly elections in that area.India has lodged a strong protest with Islamabad against these directions of the




rem

Premier League clubs must back neutral venues: LMA chief

The English Premier League season could be cancelled if teams did not agree to play the remaining 92 fixtures in neutral venues amid the COVID-19 pandemic, League Managers Association (LMA) chief executive Richard Bevan said Wednesday.




rem

Premier League does not yet have 'green light', minister warns

Britain's Culture Secretary Oliver Dowden warned Friday that the Premier League does not yet have the "green light" to resume but restated the government's hope that the season can be completed.




rem

Remote working during Coronavirus lockdown: Backups are a job worth doing

To help you out, Windows has BitLocker, Macs have FileVault, and Linux has LUKS and cryptsetup, which can be used to create encrypted drives and partitions.




rem

Education will go online; hybrid classes will remain

Due to Covid-19, all universities have been compelled to offer courses online, and various videoconferencing tools are being used.




rem

Online classes: Learning remotely with Microsoft Teams

Teams enables teachers and students to connect over video-enabled remote classrooms, offering a host of interactive and collabora-tive tools on one platform




rem

Staying safe at work: Balancing remote working needs with security

Attackers are pivoting their existing infrastructure for the distribution of ransomware, phishing emails, and other malware, leveraging COVID-19 keywords that get us to click on links or open emails.




rem

HP Smart Tank 530 Printer: Remote workers will love this machine

HP Smart Tank 530 delivers hassle-free, reliable printing at an affordable price. It is designed to provide good ink tank experience and print quality for home users.




rem

Vashi APMC to remain shut from May 11-17 due to rising COVID-19 cases

APMC administration and NMMC will carry out disinfection of the market premises and conduct tests. The market will remain open on this Saturday and Sunday.




rem

Flushing Toilet Heard During US Supreme Court's Teleconference Experiment

The U.S Supreme Court's experiment in conducting oral arguments by teleconference this week - a change forced by the coronavirus pandemic - went rather smoothly right up until what sounded...





rem

Service tax payable on remittance fees to India

Service tax to be payable on NRI remittance fees to India




rem

Obey the Rules or Face Closure, Premier David Makhura Warns Businesses

[News24Wire] Gauteng premier David Makhura has threatened to close all businesses in the province that fail to comply with Level 4 lockdown regulations.




rem

Andretti, Ganassi join new Extreme E series

Andretti Autosport and Chip Ganassi Racing are the first two American teams to commit to a new electric SUV off-road racing series scheduled to begin in 2021




rem

[Haskell Indians] Haskell Athletes Graduate at Fall 2019 Ceremony




rem

Measurement of Phase Noise in Oscillators

The other day, I happened to sneak out some time for myself after having sent the kids to play in the neighborhood park. I made myself a hot cup of coffee and settled on the couch hoping to enjoy the silence in the house. But was it really ...(read more)




rem

How to remove sessions from vManager without deleting them

I am importing sessions which are run by other people to analyse and I would like to remove them from my vManager Regressions tab as they become obsolete. As I am not the original person who run the sims, I cannot "delete" sessions. What are my options? Thanks.




rem

Accurate delay measurement between two clocks

Hi,

I am currently struggling with measuring the delay between two clocks with a sufficient accuracy. The reference one is a fixed-phase clock, and the other one is a squared clock resulting of a circuit (kind of PLL) synthesis.
As I need to run a large amount of Monte-Carlo simulations in transient noise, I need to improve the simulation speed, while keeping a satisfactory delay measurement accuracy (<0.1ps), more specifically at 0V-crossings of the differential clocks. So I cannot simply set a max timestep <0.1ps as it would be far too long to simulate.
To sum up, I would need a very relaxed timestep on clock up and down levels, and a very short timestep only at rise/fall transitions.

For this purpose, I wrote a Verilog-A script
- using a timmer function to accurately emulate the reference clock 0V-crossing times (and get the related times with $abstime)
- using @(cross to get the 0V-crossing times of the synthesized clock: but this is not accurate enough (I see simulation noise around 3ps in Conservative). Indeed, the "cross" event occures at the simulation time following the effective 0V-crossing time; this could be sometimes >3ps, far not enough accurate for my purpose.
- I have tried to replace the cross with the "above" function, but it hasn't changed anything, whatever the time_tol value I put (<0.1ps for instance), the result is the same as with the "cross" function and the points are larger than >>0.1ps, weirdly.

So I have decided to give up Verilog-A to measure the delay between my two clocks.
I am currently trying to use the "delay" function of the Cadence Calculator as I guess it will "extrapolate" the time between two simulation points and therefore give a more accurate measurement of the 0V-crossing events, but when I try to compute the delay difference between the synthesized clock and the reference clock, it returns "0".

...

Could you please give me hints to dramatically improve my 0V-crossing time measurements while relaxing the simulation time?
- either by helping me in writing a more suitable Verilog-A script
- or by helping me in using the "delay" function of the calculator
- or maybe by providing me a "magic" Skill function?
Using AMS+Multithread simulator...

Thanks a lot in advance for your help and best regards.




rem

Delay Degradation vs Glitch Peak Criteria for Constraint Measurement in Cadence Liberate

Hi,

This question is related to the constraint measurement criteria used by the Liberate inside view. I am trying to characterize a specific D flip-flop for low voltage operation (0.6V) using Cadence Liberate (V16). 

When the "define_arcs" are not explicitly specified in the settings for the circuit (but the input/outputs are indeed correct in define_cell), the inside view seems to probe an internal node (i.e. master latch output)  for constraint measurements instead of the Q output of the flip flop. So to force the tool to probe Q output I added following coder in constraint arcs :

# constraint arcs from CK => D
define_arc
-type hold
-vector {RRx}
-related_pin CP
-pin D
-probe Q
DFFXXX

define_arc
-type hold
-vector {RFx}
-related_pin CP
-pin D
-probe Q
DFFXXX

define_arc
-type setup
-vector {RRx}
-related_pin CP
-pin D
-probe Q
DFFXXX

define_arc
-type setup
-vector {RFx}
-related_pin CP
-pin D
-probe Q
DFFXXX

with -probe Q liberate identifies Q as the output, but uses Glitch-Peak criteria instead of delay degradation method. So what could be the exact reason for this unintended behavior ? In my external (spectre) spice simulation, the Flip-Flop works well and it does not show any issues in the output delay degradation when the input sweeps.

Thanks

Anuradha




rem

Remdesivir દવાએ કોરોનાના ભુક્કા બોલાવ્યા, વૈજ્ઞાનિકોના મતે Covid-19માં અસરકારક

રેમડેસિવીર દવાને પ્રયોગમાં જે દર્દીઓને આપવામાં આવી હતી તેમને 10-11 દિવસમાં જ જોરદાર પરિણામ મળ્યું




rem

Remote Buffer Overflow Bug Bites Linux Kernel




rem

Adobe Flash Player Type Confusion Remote Code Execution

This Metasploit module exploits a type confusion vulnerability found in the ActiveX component of Adobe Flash Player. This vulnerability was found exploited in the wild in November 2013. This Metasploit module has been tested successfully on IE 6 to IE 10 with Flash 11.7, 11.8 and 11.9 prior to 11.9.900.170 over Windows XP SP3 and Windows 7 SP1.




rem

Adobe Flash Player Integer Underflow Remote Code Execution

This Metasploit module exploits a vulnerability found in the ActiveX component of Adobe Flash Player before 12.0.0.43. By supplying a specially crafted swf file it is possible to trigger an integer underflow in several avm2 instructions, which can be turned into remote code execution under the context of the user, as exploited in the wild in February 2014. This Metasploit module has been tested successfully with Adobe Flash Player 11.7.700.202 on Windows XP SP3, Windows 7 SP1 and Adobe Flash Player 11.3.372.94 on Windows 8 even when it includes rop chains for several Flash 11 versions, as exploited in the wild.




rem

UCanCode Remote Code Execution / Denial Of Service

UCanCode has active-x vulnerabilities which allow for remote code execution and denial of service attacks.




rem

Adobe Flash Active-X 28.0.0.137 Remote Code Execution

Adobe Flash Active-X plugin version 28.0.0.137 remote code execution proof of concept exploit.




rem

BlackBerry Users Get Free Remote Wipe, Backup And Location




rem

D-Link Gear Open To Remote Takeover Will Remain Unpatched




rem

Windows OLE Automation Array Remote Code Execution

This Metasploit module exploits the Windows OLE automation array remote code execution vulnerability. The vulnerability exists in Internet Explorer 3.0 until version 11 within Windows 95 up to Windows 10.




rem

(On-Premises Only) Security advisory for Simulation Process Intelligence (3DOrchestrate Services) on 3DEXPERIENCE: March 11th, 2020

A vulnerability associated with Use of Hard-coded Credentials (CWE-798) exists in Simulation Process Intelligence (3DOrchestrate Services) on premises licensed program. The security risk is evaluated as High (CVSS v.3.0 Base Score 8.0) and affects all 3DEXPERIENCE releases (from 3DEXPERIENCE R2014x to 3DEXPERIENCE R2020x).




rem

Microsoft Windows SMB 3.1.1 Remote Code Execution

Microsoft Windows SMB version 3.1.1 suffers from a code execution vulnerability.




rem

LW-N605R Remote Code Execution

LW-N605R devices allow remote code execution via shell metacharacters in the HOST field of the ping feature at adm/systools.asp. Authentication is needed but the default password of admin for the admin account may be used in some cases.




rem

Telerik UI Remote Code Execution

The Telerik UI for ASP.NET AJAX insecurely deserializes JSON objects in a manner that results in arbitrary remote code execution on the software's underlying host.




rem

Apache Shiro 1.2.4 Remote Code Execution

This Metasploit module exploits a vulnerability that allows remote attackers to execute arbitrary code on vulnerable installations of Apache Shiro version 1.2.4.




rem

XMB - eXtreme Message Board 1.9.11.13 Weak Crypto / Insecure Password Storage

XMB - eXtreme Message Board version 1.9.11.13 suffers from weak crypto and insecure password storage vulnerabilities.




rem

Primefaces 5.x Remote Code Execution

This Metasploit module exploits an expression language remote code execution flaw in the Primefaces JSF framework. Primefaces versions prior to 5.2.21, 5.3.8 or 6.0 are vulnerable to a padding oracle attack, due to the use of weak crypto and default encryption password and salt.





rem

Citrix Application Delivery Controller / Gateway Remote Code Execution / Traversal

Citrix Application Delivery Controller and Citrix Gateway directory traversal remote code execution exploit.




rem

FIBARO System Home Center 5.021 Remote File Inclusion / XSS

FIBARO System Home Center version 5.021 suffers from cross site scripting and remote file inclusion vulnerabilities.




rem

PhreeBooks ERP 5.2.5 Remote Command Execution

PhreeBooks ERP version 5.2.5 suffers from a remote command execution vulnerability.




rem

Kentico CMS 12.0.14 Remote Command Execution

This Metasploit module exploits a vulnerability in the Kentico CMS platform versions 12.0.14 and earlier. Remote command execution is possible via unauthenticated XML requests to the Staging Service SyncServer.asmx interface ProcessSynchronizationTaskData method stagingTaskData parameter. XML input is passed to an insecure .NET deserialize call which allows for remote command execution.