- PC Gamer / Desktop (Ryzen 7 2700, 16 GB RAM, RTX 3050, 1TB Nvme)
- Macbook M1 16 GB RAM 1TB 13-inch (Personal)
- Macbook M1 Max 32 GB RAM 500GB 16-inch (Work)
- Macbook i5 2017 8 GB RAM 1TB 13-inch (Personal)
- Keyboard Keychron K3
| g=git | |
| ga='git add' | |
| gaa='git add --all' | |
| gam='git am' | |
| gama='git am --abort' | |
| gamc='git am --continue' | |
| gams='git am --skip' | |
| gamscp='git am --show-current-patch' | |
| gap='git apply' | |
| gapa='git add --patch' |
| #!/bin/bash | |
| # 1. List all files in the codebase, excluding specific folders | |
| find . -type f \ | |
| -not -path "./.git/*" \ | |
| -not -path "./node_modules/*" \ | |
| -not -path "./src/node_modules/*" \ | |
| -not -path "./vendor/*" \ | |
| -not -path "./src/ios/Pods/*" \ | |
| | sed 's|^\./||' \ |
| //SPDX-License-Identifier: UNLICENSED | |
| pragma solidity ^0.8.0; | |
| contract CashbackContract { | |
| address payable shop; | |
| uint256 public percentage = 10; // 10% | |
| constructor(address target) { | |
| shop = payable(target); |
| cfgver "1" | |
| unbindall | |
| bind "0" "slot10" | |
| bind "1" "slot1" | |
| bind "2" "slot2" | |
| bind "3" "slot3" | |
| bind "4" "slot4" | |
| bind "5" "slot5" | |
| bind "6" "slot6" | |
| bind "7" "slot7" |
| import * as React from 'react' | |
| import { Animated, Easing, ScrollView, View } from 'react-native' | |
| const AutoScrolling = ({ | |
| style, | |
| children, | |
| endPaddingWidth = 20, | |
| duration, | |
| delay = 0, | |
| isLTR = false, |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) | |
| pragma solidity ^0.8.0; | |
| import "../utils/Context.sol"; | |
| /** | |
| * @dev Contract module which provides a basic access control mechanism, where | |
| * there is an account (an owner) that can be granted exclusive access to |
| export JAVA_HOME=/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home | |
| export ANDROID_HOME=~/Library/Android/sdk | |
| export PATH=$PATH:$ANDROID_HOME/emulator | |
| export PATH=$PATH:$ANDROID_HOME/tools | |
| export PATH=$PATH:$ANDROID_HOME/tools/bin | |
| export PATH=$PATH:$ANDROID_HOME/platform-tools | |
| echo >> /Users/akinncar/.zprofile | |
| echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/akinncar/.zprofile | |
| eval "$(/opt/homebrew/bin/brew shellenv)" |
| import '__mocks__/broadcast' | |
| import { ReactChildren, ReactChild } from 'react' | |
| import { render } from '@testing-library/react' | |
| import { GlobalStyles } from 'styles' | |
| import { ToastContainer } from 'components/Toast' | |
| import { AuthProvider } from 'contexts/AuthContext' | |
| import { SidebarProvider } from 'contexts/SidebarContext' |