I came to believe that an ISP can easily detect full nodes, BTC connections and isolate them from reaching any other nodes When and if an ISP decided to do so, they could easily perform an 51% attack and do everything they want?Read more
I came to believe that an ISP can easily detect full nodes, BTC connections and isolate them from reaching any other nodes When and if an ISP decided to do so, they could easily perform an 51% attack and do everything they want?Read more
I wanted to ask if there was a way for me to make my android phone stop responding at a specific area on my screen because it has a problem ( the screen presses and swipes itself I’ve googled it and people call it the ghost touch ) but my phone only presses and swipesRead more
I am trying to understand what timezone is being used when a DATE column defaults to SYSDATE. Given I have a column defined as: REPORT_DT DATE DEFAULT SYSDATE NOT NULL and SELECT EXTRACT(TIMEZONE_HOUR FROM SYSTIMESTAMP) || ‘:’ || EXTRACT(TIMEZONE_MINUTE FROM SYSTIMESTAMP) FROM DUAL; returns -5:0 and SELECT DBTIMEZONE FROM DUAL; returns -05:00 What is theRead more
The script RecordRTC allows for recording web cam via web page. One of their scripts is just for manual recording, one is for auto recording and uploading. Both scripts work successfully individually. This code works successfully for manual start/stop recording: <!DOCTYPE html> <html> <head> </head> <body> <style> html, body { margin: 0!important; padding: 0!important; overflow:Read more
Currently using the following to filter today: var dataUrl = siteUrl + “/_api/web/lists/getbytitle(‘AbsenceRequest’)/items?$ filter=((EventDate le ‘” + new Date().toISOString() + “‘) and (EndDate ge ‘” + new Date().toISOString() + “‘) and Status eq ‘Approved’)&$ select=SDID, calDisplayFN, EventDate, EndDate, RequestType, Status, ActivityType”; How do I ignore the time? EventDate and EndDate are both Date/Time format orRead more
I have a need to see a trend of data for “month to date” So I want to pull the 1st x number of days of each month for the last 14 months, and the n aggregate this. My data has approximately 10k data points each day So far I have only been able toRead more