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
rm -rf ./node_modules | |
yarn cache clean | |
yarn | |
cd ios | |
pod deintegrate | |
rm -rf ./Pods | |
pod install | |
cd .. | |
cd android | |
rm -rf ./build |
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 React, {Component} from 'react'; | |
import {View, TouchableOpacity, Text} from 'react-native'; | |
import Animated, { | |
useSharedValue, | |
useAnimatedStyle, | |
withTiming, | |
} from 'react-native-reanimated'; | |
function RotationAnimation(props) { | |
var rotationValue = 0; |
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 instagram | |
def instagram_algorythm(story_reaction): | |
if story_reaction is '🔥': | |
do_notething() |
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 math | |
class Solver: | |
_found_primes = set() | |
def _is_prime(self, num): | |
# jeżeli jest już pierwszą to nie szukaj dalej, O(1) | |
if num in self._found_primes: |
NewerOlder