This file contains 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
# Privacy Policy | |
Sudoyantra takes your privacy seriously. To better protect your privacy We provide this privacy policy notice explaining the way your personal information is collected and used. | |
## Collection of Routine Information | |
This app track basic information about their users. This information includes, but is not limited to, IP addresses, app details, timestamps and referring pages. None of this information can personally identify specific user to this app. The information is tracked for routine administration and maintenance purposes. | |
This file contains 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
date,value | |
2013-04-28,135.98 | |
2013-04-29,147.49 | |
2013-04-30,146.93 | |
2013-05-01,139.89 | |
2013-05-02,125.6 | |
2013-05-03,108.13 | |
2013-05-04,115 | |
2013-05-05,118.8 | |
2013-05-06,124.66 |
This file contains 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 'package:flutter/material.dart'; | |
class TestScreen extends StatefulWidget { | |
TestScreen({Key? key}) : super(key: key); | |
final GlobalKey<FormState> _formKey = GlobalKey<FormState>(); | |
final testController = TextEditingController(); | |
@override | |
State<StatefulWidget> createState() => _TestScreenState(); |
This file contains 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
# Privacy Policy | |
Listomania takes your privacy seriously. To better protect your privacy We provide this privacy policy notice explaining the way your personal information is collected and used. | |
## Collection of Routine Information | |
This app track basic information about their users. This information includes, but is not limited to, IP addresses, app details, timestamps and referring pages. None of this information can personally identify specific user to this app. The information is tracked for routine administration and maintenance purposes. | |
This file contains 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 <iostream> | |
#include <string.h> | |
#include <regex> | |
#include <time.h> | |
using namespace std; | |
string xor1(string a, string b) | |
{ | |
string result = ""; | |
int n = b.length(); |
This file contains 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
# Privacy Policy | |
Quizoy takes your privacy seriously. To better protect your privacy We provide this privacy policy notice explaining the way your personal information is collected and used. | |
## Collection of Routine Information | |
This app track basic information about their users. This information includes, but is not limited to, IP addresses, app details, timestamps and referring pages. None of this information can personally identify specific user to this app. The information is tracked for routine administration and maintenance purposes. | |
This file contains 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 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatefulWidget { | |
@override | |
_MyAppState createState() => _MyAppState(); | |
} |
This file contains 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 requests | |
def ocr_space_file(filename, overlay=False, api_key='2704fc2bc388957', language='eng'): | |
payload = {'isOverlayRequired': overlay, | |
'apikey': api_key, | |
'language': language, | |
'detectOrientation': True, | |
'scale': True, | |
'OCREngine': 2, | |
} |
This file contains 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
from mpmath import mp | |
# * Initializing accuracy level and value of const_k | |
mp.dps = 100 | |
const_k = mp.fmul(8.9875518, 10**9) | |
def dipole(r:float, theta:float, charge:float, a:float): | |
''' |
This file contains 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
from mpmath import mp | |
from math import cos, radians | |
# * Initializing accuracy level and value of const_k | |
mp.dps = 100 | |
const_k = mp.fmul(8.9875518, 10**9) | |
def dipole_moment(charge, a): | |
# Editing Value of charge as per the unit |
NewerOlder