| S/N | OPERATOR | 7-digit Assignments | STATUS |
|---|---|---|---|
| 1. | MIC Tanzania PLC | 071 + Y XXXXXX 065 + Y XXXXXX 067 + Y XXXXXX |
Operational |
| 2. | Tanzania Telecommunications Corporation | 073 + Y XXXXXX | Operational |
| 3. | Vodacom Tanzania PLC | 074 + Y XXXXXX 075 + Y XXXXXX 076 + Y XXXXXX |
Operational |
| 4. | Zanzibar Telecom PLC | 077 + Y XXXXXX | Operational |
| 5. | Airtel Tanzania PLC | 078 + Y XXXXXX 068 + Y XXXXXX 069 + Y XXXXXX |
Operational |
| 6. | Smile Communications Tanzania Limited | 066 + Y XXXXXX |
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
| http://tracker2.wasabii.com.tw:6969/announce | |
| http://www.wareztorrent.com:80/announce | |
| udp://bt.xxx-tracker.com:2710/announce | |
| udp://tracker.eddie4.nl:6969/announce | |
| udp://tracker.grepler.com:6969/announce | |
| udp://tracker.mg64.net:2710/announce | |
| udp://wambo.club:1337/announce | |
| udp://tracker.dutchtracking.com:6969/announce | |
| udp://tc.animereactor.ru:8082/announce | |
| udp://tracker.justseed.it:1337/announce |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Document</title> | |
| </head> |
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 from "react"; | |
| import { useForm, UseFormReturn, SubmitHandler } from "react-hook-form"; | |
| type InputProps = React.DetailedHTMLProps< | |
| React.InputHTMLAttributes<HTMLInputElement>, | |
| HTMLInputElement | |
| >; | |
| const Input = React.forwardRef<HTMLInputElement, InputProps>((props, ref) => ( | |
| <label htmlFor={props.name}> |
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
| // Number with commas | |
| function numberWithCommas(x: number): string { | |
| return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ","); | |
| } | |
| function toLocaleStringSupportsLocales(number: number | string) { | |
| if (typeof number === "string") { | |
| return parseFloat(number).toLocaleString(); | |
| } | |
| return number.toLocaleString(); |
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
| const validateEmail = (email: string) => { | |
| const re = | |
| /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; | |
| return re.test(String(email).toLowerCase()); | |
| }; | |
| const ifElse = (condition: boolean, ifTrue: any, ifFalse: any) => { | |
| return condition ? ifTrue : ifFalse; | |
| }; |
Warning: HTML form validation is not a substitute for server-side scripts that ensure the entered data is in the proper format before it is allowed into the database. It's far too easy for someone to make adjustments to the HTML that allow them to bypass the validation, or to remove it entirely. It's also possible for someone to bypass your HTML entirely and submit the data directly to your server. If your server-side code fails to validate the data it receives, disaster could strike when improperly-formatted data (or data which is too large, is of the wrong type, and so forth) is entered into your database.
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 { createTransport } from "nodemailer"; | |
| const smtpConnection = createTransport({ | |
| host: "smtp-relay.sendinblue.com", | |
| port: 587, | |
| auth: { | |
| user: process.env.SMTP_USER || "", | |
| pass: process.env.SMTP_PASSWORD || "", | |
| }, | |
| }); |