This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
List of domains that are registered with squarespace and thus could be vulnerable: | |
celer.network | |
pendle.finance | |
karak.network | |
compound.finance | |
hyperliquid.xyz | |
dydx.exchange | |
thorchain.com | |
threshold.network |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.straucorp.datastorepreferences | |
/** | |
* @author Andre Straube - Created on 29/08/2021 | |
*/ | |
import android.content.Context | |
import androidx.datastore.core.DataStore | |
import androidx.datastore.preferences.SharedPreferencesMigration | |
import androidx.datastore.preferences.core.Preferences | |
import androidx.datastore.preferences.core.intPreferencesKey |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.github.astraube | |
import android.util.Log | |
import java.io.File | |
/** | |
* @author Andre - Created on 13/07/2021 | |
*/ | |
object RootChecker { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2020 The Android Open Source Project | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import androidx.compose.* | |
import androidx.ui.foundation.Text | |
import androidx.ui.graphics.Color | |
import androidx.ui.layout.Column | |
import androidx.ui.material.Button | |
import androidx.ui.material.Checkbox | |
import androidx.ui.material.MaterialTheme | |
import androidx.ui.material.Surface | |
import androidx.ui.tooling.preview.Preview |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#if _MSC_VER | |
#define ASMDEF __asm | |
#elif __ORANGEC__ || __DMC__ | |
#define ASMDEF asm | |
#endif | |
int xor(int a, int b) | |
{ |