I hereby claim:
- I am samermurad on github.
- I am samermurad (https://keybase.io/samermurad) on keybase.
- I have a public key ASBT9YNuSzPnwnxv1eLOT3iK1d5u1JHHtZSq_cpLn1eRYgo
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title> Test Progress</title> | |
| </head> | |
| <style type="text/css"> | |
| .progress { | |
| position: relative; | |
| display: flex; | |
| height: 100px; |
| const requrest = require('request') | |
| const BOT_TOKEN = '<YOUR_TOKEN_HERE>' | |
| const CHAT_ID = 0 // <YOUR_CHAT_ID> | |
| const tmMsg = (text) => { | |
| const options = { | |
| method: 'POST', | |
| url: `https://api.telegram.org/bot${BOT_TOKEN}/sendMessage`, | |
| headers: { 'Content-Type': 'application/json' }, | |
| body: JSON.stringify({ chat_id: CHAT_ID, text }) |
| const crypto = require('crypto'); | |
| const TAG = 'cryptor || ' | |
| /** | |
| * @typedef CryptResult | |
| * @property {string} iv | |
| * @property {string} crypt | |
| */ |
| import React, { Component } from 'react' | |
| import { View, TouchableOpacity, StyleSheet,Image,Animated, Platform, BackHandler, Button } from 'react-native' | |
| import { connect } from 'react-redux' | |
| import {Actions} from 'react-native-router-flux' | |
| import { colors,fonts,images, styles as appStyles } from '../assets' | |
| import { Screen, NAVIGATION_BAR_HEIGHT, STATUS_BAR_HEIGHT } from '../consts' | |
| import { mediaType } from '../enums' | |
| import Interactable from 'react-native-interactable' | |
| import { CachedImage } from 'react-native-cached-image' | |
| import { Player as AudioPlayer } from 'react-native-audio-toolkit' |
| #!/bin/sh | |
| gitHash=$(/usr/libexec/PlistBuddy -c "Print :GitHash" "${PROJECT_DIR}/${INFOPLIST_FILE}") | |
| exitCode=$? | |
| if [ $exitCode == 0 ]; then | |
| gitHash=$(git rev-parse HEAD | cut -c1-10) | |
| /usr/libexec/PlistBuddy -c "Set :GitHash $gitHash" "${PROJECT_DIR}/${INFOPLIST_FILE}" | |
| else | |
| gitHash=$(git rev-parse HEAD | cut -c1-10) | |
| /usr/libexec/PlistBuddy -c "Add :GitHash string $gitHash" "${PROJECT_DIR}/${INFOPLIST_FILE}" | |
| fi |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * Copyright (c) 2015-present, Facebook, Inc. | |
| * All rights reserved. | |
| * | |
| * This source code is licensed under the BSD-style license found in the | |
| * LICENSE file in the root directory of this source tree. An additional grant | |
| * of patent rights can be found in the PATENTS file in the same directory. | |
| */ | |
| #import "RCTWebView.h" |
| for (NSString* famName in [UIFont familyNames]) { | |
| NSLog(@"== %@",famName); | |
| for (NSString* nameInFam in [UIFont fontNamesForFamilyName:famName]) { | |
| NSLog(@"==== %@",nameInFam); | |
| } | |
| } |