Someone opened our roof entrance door changed the code and can build on our base roof but they 100% do not have codes or TC authorisation? How is this possible?? Anyone had this happen? Is it hackers?
πŸ‘︎ 25
πŸ’¬︎
πŸ‘€︎ u/MrCrispyZebra
πŸ“…︎ Jul 22 2021
🚨︎ report
WooHoo! Q.u.i.N. XR code-free AI System Alpha 1.0 preview for our no-code platform for marker/markerless/geo. 5 Years in the making as we are porting all of our builds via WASM and our IBM partnership. Who wants to be a beta tester this summer? LMK. v.redd.it/z7tpc5i807b81
πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/AugmentedThinker
πŸ“…︎ Jan 12 2022
🚨︎ report
Porting Teensy / SPI code to ESP8266 (D1 Mini)

I'm currently re-writing a program that was originally intended for the Teensy 3.X board and a pair of CC1101's via the SPI interface.

There is a definition and routine I don't understand:

// Wait for MISO line to go low
#define wait_miso() while(bitRead(PORT_SPI_MISO, BIT_SPI_MISO))

//Define MISO
#define PORT_SPI_MISO  PINB
#define BIT_SPI_MISO  2

//Define rx 
#define PORT_GDO0_RX  PIND
#define BIT_GDO0_RX 3 

//Define tx 
#define PORT_GDO0_TX  PIND
#define BIT_GDO0_TX  4

boolean get_GDO0_state()
  {
    if(chipSelectRX) return bitRead(PORT_GDO0_RX, BIT_GDO0_RX); else return bitRead(PORT_GDO0_TX, BIT_GDO0_TX);
  }

I vaguely understand that wait_Miso is waiting for a change on a bit with respect to MISO, and the get_GDO0_state is returning a boolean as to what state either CC1101 is in.

My questions are:

- What is PINB and PIND referring to? Is this a shortcut to a certain pin on the Teensy?

- Are BIT_GDO0_TX, BIT_GDO0_RX and BIT_SPI_MISO arbitrary or is there a reason for their respective numbers e.g.

In summary, could someone ELI5 what bitRead is doing and how the PINB/PIND defintions are used in conjunction with the numbers e.g. 2, 3, 4

πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/djaxial
πŸ“…︎ Jan 26 2022
🚨︎ report
How do I add Authorisation header and date header in this code?

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.http.HttpClient;
import java.util.Base64;
public class DuoAdminAPI {
public static void POSTRequest() throws IOException {

final String IntegrationKey = "Integration Key";
// secret Key
final String secretKey = "Secret Key";
// Concatenate Integration Key and secret Key and use base64 to encode the
// concatenated string
String plainCredentials = IntegrationKey + ":" + secretKey;
String base64Credentials = new String(Base64.getEncoder().encode(plainCredentials.getBytes()));
// Create authorization header
String authorizationHeader = "Basic " + base64Credentials;

final String POST_PARAMS = "{\n" + "\"userId\": 101,\r\n" +
" \"id\": 101,\r\n" +
" \"title\": \"Test Title\",\r\n" +
" \"body\": \"Test Body\"" + "\n}";
System.out.println(POST_PARAMS);
URL obj = new URL("https://api-e9770554.duosecurity.com");
HttpURLConnection postConnection = (HttpURLConnection) obj.openConnection();
postConnection.setRequestMethod("POST");
postConnection.setRequestProperty("userId", "a1bcdefgh");
postConnection.setRequestProperty("Content-Type", "application/json");

postConnection.setDoOutput(true);
OutputStream os = postConnection.getOutputStream();
os.write(POST_PARAMS.getBytes());
os.flush();
os.close();
int responseCode = postConnection.getResponseCode();
System.out.println("POST Response Code : " + responseCode);
System.out.println("POST Response Message : " + postConnection.getResponseMessage());
if (responseCode == HttpURLConnection.HTTP_CREATED) { //success
BufferedReader in = new BufferedReader(new InputStreamReader(
postConnection.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
// print result
System.out.println(response.toString());
} else {
System.out.println("POST NOT WORKED");
}
}
}

πŸ‘︎ 4
πŸ’¬︎
πŸ“…︎ Sep 03 2021
🚨︎ report
Never forget the fact that Maria’s authorisation code is MLG.
πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/lilsquinty9
πŸ“…︎ Sep 09 2021
🚨︎ report
WooHoo! Q.u.i.N. XR code-free AI System Alpha 1.0 preview. 5 Years in the making as we are porting all of our builds via WASM and our IBM partnership. Who wants to be a beta tester this summer? LMK. v.redd.it/g7e2vvl1o5b81
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/AugmentedThinker
πŸ“…︎ Jan 12 2022
🚨︎ report
Old head professional software developer has a question about porting code in VS 2008. Question in comment.
πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/goodnewsjimcom
πŸ“…︎ Dec 10 2021
🚨︎ report
Porting Spectral Element Fortran code to AMD GPUs Livestream

I wanted to share an interactive livestream coding session I'm doing in a few minutes. I'll be working on an AMD MI25 Frontier edition GPU and will be working on testing a spectral elements advection-diffusion solver that is being ported with HIPFort.

I love hearing from other programmers who are working with ROCm - feel free to tune in and drop a message in the chat.

https://www.youtube.com/watch?v=fj814BEkeUA

πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/FluidNumerics_Joe
πŸ“…︎ Dec 10 2021
🚨︎ report
Mirror Code System I made: Can destroy specific objects, create, and give authorisation whether it's host or client

Features:

  • - Client mouse position
  • - Destroying a specific object, whether it is client or host
  • - Create an object, whether it is client or host
  • - Assigning authority
  • - Removing authority

​

/* 
CC BY PhurListaCatt - Christopher Elliott Miller

I struggled a lot to figure this all out, due to the lack of update content online about networking with Mirror. Decided to help others out with this code piece to help get them started. 

Goodluck!
*/




using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
public class PlayerCursor_Interaction : NetworkBehaviour
{
    Vector2 mousePosition;
    [SerializeField] GameObject objNetworkID_Selected;

    #region Client ------------------------- 
    [Client]
    private void Start()
    {
        this.name = "Player";
        Cursor.visible = false;

        mousePosition = Camera.main.ScreenToWorldPoint(mousePosition);
    }

    [Client]
    private void Update()
    {
        if (isLocalPlayer)
        {
            //Clients
            mousePosition = Input.mousePosition;
            mousePosition = Camera.main.ScreenToWorldPoint(mousePosition);
            MouseInput();

            //Commands
            CmdCursorPosition(mousePosition);
        }
    }

    [Client]
    void MouseInput()
    {
        if (Input.GetMouseButton(1)) //Destroy
        {
            //Use ray to figure out what is selected
            RaycastHit hit;
            Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
            if (Physics.Raycast(ray, out hit, 10.0f))
            {
                hit.transform.name = "DeleteThis";
                //Determining what authority to assign to the clienmt
                NetworkIdentity selectedObject = GameObject.Find(hit.transform.name).GetComponent<NetworkIdentity>();
                CmdAssignAuthorityObject(selectedObject);


                GameObject selectedObjectOBJ = GameObject.Find(hit.transform.name);
                CmdDestroyObject(selectedObjectOBJ);
            }
        }

        if (Input.GetMouseButton(2)) //Creates object
        {
            CmdCreateObject();
        }
    }
    #endregion
... keep reading on reddit ➑

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/PhurListaCatt
πŸ“…︎ Aug 24 2021
🚨︎ report
Porting to US Mobile from existing MVNO with older area code

I am looking to switch my personal number from another MVNO to US Mobile. My personal number including area code is carried over from a state that I used to live in many years ago. I now live in a different state. I have been able to keep my phone number including area code all of these years. I would like to keep the exact same phone number (including area code) unchanged. If I port to US Mobile, will I lose my phone number? I can't afford to change it for professional and family reasons. Thank you.

πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/throwaway_762
πŸ“…︎ Oct 31 2021
🚨︎ report
Porting Spectral Element Fortran code to AMD GPUs Livestream /r/ROCm/comments/rdkzjx/p…
πŸ‘︎ 11
πŸ’¬︎
πŸ‘€︎ u/FluidNumerics_Joe
πŸ“…︎ Dec 10 2021
🚨︎ report
Porting Spectral Element Fortran code to AMD GPUs Livestream /r/ROCm/comments/rdkzjx/p…
πŸ‘︎ 8
πŸ’¬︎
πŸ‘€︎ u/FluidNumerics_Joe
πŸ“…︎ Dec 10 2021
🚨︎ report
I wasn't receiving my sms authorisation code, and now my account has been completely locked down, and my provisional drivers license ID was refused. What can I do?

During a password change, I was logged out of all of my devices. This included my phone.

I was waiting for my sms code to come through so I could approve my login, but it didn't come.

I seem to have tried too many times and it locked my account for code requests. I went through the ID upload process with my provisional drivers license, which apart from an old out of date passport is the only photo ID I own, but it was refused multiple times.

So I wasn't receiving the text codes, and my number was certainly correct as I've reset it recently and had no problem. The account is now completely hidden, presumably for security purposes. But what on earth can I do now to get my account back?

I have voice notes from my recently deceased father in my messages. I haven't been able to save them yet so they are all I have left and they're locked away and I cannot get to them.

Please, anybody. What can I do?

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/thatboddydoe
πŸ“…︎ Jul 10 2021
🚨︎ report
Porting a number into a family plan with a different area code

So my son and I moved from Mississippi to Minnesota. I am still on her family plan. She moved up here with my husband and I, I believe she has changed her billing address to ours. We still have our old numbers. My son currently has a trac phone with a Minnesota number. He goes through data like water, so I want to get him a phone on the family plan. My mom has lines she doesn't even use for reasons I don't entirely understand. I called AT&T to ask if I can port a number in with a different area code, and could it be on an existing line, and the guy said yes, but he barely spoke English and I'm not 100% sure he fully understood the details of my question. The AT&T store won't answer their phone. Anyone here have an idea of whether this is possible or not?

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Ruby_Tuesday80
πŸ“…︎ Oct 07 2021
🚨︎ report
In other news, emails just published by ⁦ @CommonsForeign ⁩ re the Afghan evacuation refer to the PM giving personal authorisation for the Nowzad animals to be evacuated. This was denied by No10 spokesman. twitter.com/tamcohen/stat…
πŸ‘︎ 442
πŸ’¬︎
πŸ‘€︎ u/Sckathian
πŸ“…︎ Jan 26 2022
🚨︎ report
Porting code from Arduino to ESP

Hello guys! Noobie question, sorry.

I have some experience with Arduino programming (C) and done some work with ESP8266 using ESPHome framework (YAML configs). But I have never programmed ESP directly.

I found a project that use code written for Arduino (ino files for A. Mega, OLED display, temperature sensor, few buttons, some LED).

Can I use the same code for ESP-based system (remapping GPIO if needed), considering I have enough GPIO for peripheral? At least with minimal changes?

Is it even possible - is the code in principle compatible? All business logic and peripheral should work? Tnx!

πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/Yuriy-Smetana
πŸ“…︎ Aug 13 2021
🚨︎ report
Porting an AVX-512 neural net C99 code generator to RISC-V

NN-512 is a compiler that generates C99 code for neural net inference. It takes as input a simple text description of a convolutional neural net inference graph. It produces as output a stand-alone C99 implementation of that graph.

https://NN-512.com

The generated C99 code uses AVX-512 vector instructions to perform inference. But RISC-V vector instruction intrinsics could be generated instead. The result would be an extremely high performance neural net inference system for RISC-V.

What do you think? Is this a good idea or not, and why?

πŸ‘︎ 19
πŸ’¬︎
πŸ‘€︎ u/NN-512
πŸ“…︎ Jul 22 2021
🚨︎ report
How am I supposed to enter on my phone the 2-digit code during Phone Call verification when in the process of porting a number to Google Voice?

Hi, I am in the process of porting my mobile phone number to my GV account. Everything is working fine until the phone call verification step where I am supposed to enter the 2-digit code that GV gives me. I am receiving the phone call from GV but when I enter the 2-digit code on my phone (Using the Keypad of my iPhone), it's apparently not recognized by Google Voice. I am not entering a wrong number, it seems that whatever number I am entering on my Keypad is not recognized by the GV program on the phone.

How I am supposed to enter this 2-digit code? Am I supposed to use the Keypad of the phone app of my iPhone like I am doing or is there another way? Anybody else had the same issue?

Thank you!

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Kitchen_Safe_1123
πŸ“…︎ Aug 16 2021
🚨︎ report
A Porting Horror Story -- "Once upon a time there was a small company that had a great deal of legacy code written in Perl. The new engineering manager and the new CTO wanted to move to a Java-based solution." perlmonks.org/index.pl/56…
πŸ‘︎ 76
πŸ’¬︎
πŸ‘€︎ u/trot-trot
πŸ“…︎ Apr 25 2021
🚨︎ report
Why is my app grey and not working when I’ve run the app as an administrator and entered correct authorisation codes?
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/ponny6890
πŸ“…︎ Nov 21 2020
🚨︎ report
A Porting Horror Story -- "Once upon a time there was a small company that had a great deal of legacy code written in Perl. The new engineering manager and the new CTO wanted to move to a Java-based solution." perlmonks.org/index.pl/56…
πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/trot-trot
πŸ“…︎ Apr 25 2021
🚨︎ report
A Porting Horror Story -- "Once upon a time there was a small company that had a great deal of legacy code written in Perl. The new engineering manager and the new CTO wanted to move to a Java-based solution." perlmonks.org/index.pl/56…
πŸ‘︎ 22
πŸ’¬︎
πŸ‘€︎ u/trot-trot
πŸ“…︎ Apr 25 2021
🚨︎ report
Using an old EZDrummer VST in Bitwig. It asks for authorisation code on every project opening, audio-engine re-activation or when setting the track back to active. I only had to enter the authorisation code once in years of using Reaper as DAW.

Here's the title again because someone decided that long titles should be cut off via css?!:

Using an old EZDrummer VST in Bitwig. It asks for authorisation code on every project opening, audio-engine re-activation or when setting the track back to active. I only had to enter the authorisation code once in years of using Reaper as DAW.

Any idea why?

It's only slightly annoying but doing this three times per evening does do suck a little :)

πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/catharso
πŸ“…︎ Oct 24 2020
🚨︎ report
US drugs watchdog pulls authorisation for Covid monoclonal antibodies ft.com/content/20396e83-3…
πŸ‘︎ 48
πŸ’¬︎
πŸ‘€︎ u/topgear9123
πŸ“…︎ Jan 25 2022
🚨︎ report
Letter of Authorisation to Computershare for Β£1 Mill plus a share

Hi all

As I understand it, if we find ourselves in the enviable position of being able to sell a share for more than $1,000,000 per share, having DRS the shares to Computershare, that there is a maximum sale value of $1,000,000 in place. To sell at a value over the 1 Mil, I would have to send a signed letter authorising this!

I have just spoken to a UK assistant who was unable to clarify how the system works despite a 40 min troll through their website trying to find an answer.

Can we send the letter in advance? Do we make the sale then send the letter? Do we send the letter via snail mail of can we email it?

If we make the sale and then have to send the letter via snail; mail, do we have to wait the 6 weeks for the letter to crawl to the U.S before we can gain access to funds?

So Many questions...

Has anyone looked into this yet? I have not seen anything myself. Any assistance from a wrinkled brain would be much appreciated.

All my shares are DRS. I am a happy Ape.

πŸ‘︎ 49
πŸ’¬︎
πŸ‘€︎ u/Umpalupanewb
πŸ“…︎ Jan 10 2022
🚨︎ report
Any promo codes for porting in?

Hello! I’m making the switch to USMobile from Mint Mobile and before I start ordering SIM cards, just wanted to know if there were any promo codes I might be missing out on. I’m porting just my line for the super LTE on a iPhone XS Max. TIA!

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/DisNichant
πŸ“…︎ Jun 17 2021
🚨︎ report
[MK8] I'm Seriously Surprised not Anyone From my Knowledge has Ever Pointed This Out. Piranha Plants Have this Weird Glitchy Mesh Instead of Teeth that only Fixes Itself When you Get Extremely Close. This is only a Problem in DX. They Must Have Messed With the Code by Accident when Porting the Game. reddit.com/gallery/mzwrgm
πŸ‘︎ 18
πŸ’¬︎
πŸ‘€︎ u/Orca_Corca
πŸ“…︎ Apr 27 2021
🚨︎ report
EMA recommends Nuvaxovid for authorisation in the EU - European Medicines Agency ema.europa.eu/en/news/ema…
πŸ‘︎ 44
πŸ’¬︎
πŸ‘€︎ u/someth1ng_au
πŸ“…︎ Dec 20 2021
🚨︎ report
CDC 2FA authenticator deactivated without authorisation

I was logged out of my app and when logging back in, my 2FA has been disconnected. I can't reconnect the 2FA either, it keeps coming up with an error?

πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/AkkyYT
πŸ“…︎ Jan 17 2022
🚨︎ report
Pfizer Post-Authorisation Information Revealed – Implications for Public Policy thedailyexaminer.co.nz/pf…
πŸ‘︎ 60
πŸ’¬︎
πŸ‘€︎ u/MajorRawne
πŸ“…︎ Dec 05 2021
🚨︎ report
FDA experts ask why Kids are β€œdropping like flies” right after getting the Covid-19 Vaccine as they meet to debate authorisation of the Pfizer jab for 5-11-year-olds
πŸ‘︎ 208
πŸ’¬︎
πŸ‘€︎ u/LumpyGravy21
πŸ“…︎ Oct 26 2021
🚨︎ report
Questions/Help RE: Using Unlock Code & Porting Out #

I apologize in advance if my questions make me look like a simpleton - I'm tech savvy about some things but cell phones aren't one of them lol. I searched my questions (Google, YouTube, here) but didn't find answers specific to my situation.

I'm planning on switching to Google Fi (mostly to get the Moto G Power - that'll be here Sat. - on the cheap) so I wanted to unlock my current phone, an LG X Power (LG-K450 bought in 2017) before hand to have it as a potential back up. I requested and received the unlock code from Cricket but I don't know where to put it/ how to use it? Answers I've read mention turning off the phone, putting a different SIM in it and turning back on, then the unlock screen should appear where I'd input the unlock code. Problem is I don't have any other SIM's, just the one currently in my X Power. I found one answer that said I could turn off the phone, remove my SIM, turn on the phone without a SIM in it and the unlock screen would appear. Then it would unlock after I enter the code, I could turn it back off and put my SIM back in. BUT I don't want to try something like that without some info or confirmation that it would indeed work (w/out causing any issues or service problems, esp. since it has to be active for me to port out my number). Does anyone know if this suggested method would work or if not, what *would* work for me to unlock my phone (while I still can, before I port out my #/ end service w/Cricket)?

RE: porting out my #, Google Fi says it needs the billing address but for some reason Cricket doesn't provide a way to update your address in the My Account section (not that I've found and the My Cricket app constantly 'fails to connect with network'). I'm not even sure which address they currently have for me. I'm also not 100% on what my account PIN is; I've been w/Cricket since 2014 and have rarely needed it (it's one of 2 diff codes I usually use as PINs, just not sure which one). I know I'll need to contact Cricket about this but would the Porting Dept be able to help w/both issues (updating my address and recovering my PIN) or will I need to contact the reg CS for this? I want to make sure everything is in order to hopefully have a smooth & swift experience porting the # to Fi. I don't want to have to pay for another month on Cricket just to get the port through when I won't be using the service, nor do I want to be paying for Fi service if I can't use it while the port may be delayed somehow if I don't have

... keep reading on reddit ➑

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/DexieMac
πŸ“…︎ May 07 2021
🚨︎ report
CDSCO panel recommends emergency use authorisation for SII's Covid vaccine Covovax | India News - Times of India m.timesofindia.com/india/…
πŸ‘︎ 33
πŸ’¬︎
πŸ“…︎ Dec 27 2021
🚨︎ report
Gamasutra: Zach Barth's Blog - porting SHENZHEN SOLITAIRE to MS-DOS [game now available for free with source code] gamasutra.com/blogs/ZachB…
πŸ‘︎ 3
πŸ’¬︎
πŸ“…︎ Jun 07 2021
🚨︎ report
Novavax UK authorisation

Any news when we can get our hands on Novavax in the UK? I'm currently facing dismissal from my job in social care due to being unvaxxed. I've been waiting patiently for Novavax but the deadline is approaching fast and still no news as far as I can see.😏

πŸ‘︎ 11
πŸ’¬︎
πŸ‘€︎ u/garethit1
πŸ“…︎ Jan 14 2022
🚨︎ report
NOVAVAX, a company with a 35-year long history of failed vaccines, has received a "Conditional Marketing Authorisation" for its Nuvaxovid C19 vaxx. (Remember, Moderna's 10-year failed history ended with it's EUA'd C19 vaxxes and we know how "well" that went!) Will you get Nuvaxovid?
πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/EntruckungWachter
πŸ“…︎ Jan 10 2022
🚨︎ report
Bharat Biotech’s Krishna Ella on delay in WHO emergency authorisation for Covaxin: Negative publicity in media on Covaxin put WHO in an awkward position. The review was made more intense as WHO wanted to be doubly sure v.redd.it/4akphq51bxy71
πŸ‘︎ 793
πŸ’¬︎
πŸ‘€︎ u/ChirpingSparrows
πŸ“…︎ Nov 11 2021
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.