Skip to content

Instantly share code, notes, and snippets.

View piaskowyk's full-sized avatar
🚀

Krzysztof Piaskowy piaskowyk

🚀
  • Software Mansion
  • Poland
View GitHub Profile
rm -rf ./node_modules
yarn cache clean
yarn
cd ios
pod deintegrate
rm -rf ./Pods
pod install
cd ..
cd android
rm -rf ./build
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;
import instagram
def instagram_algorythm(story_reaction):
if story_reaction is '🔥':
do_notething()
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: