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
If you've got local source code you want to add to a new remote new git repository without 'cloning' the remote first, do the following (I often do this - you create your remote empty repository in bitbucket/github, then push up your source) | |
1. Create the remote repository, and get the URL such as git://github.com/youruser/somename.git | |
2. If your local GIT repo is already set up, skips steps 2 and 3 | |
3. Locally, at the root directory of your source, git init | |
4. Locally, add and commit what you want in your initial repo (for everything, | |
git add . |
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
<div class="tour" data-daily-price="357"> | |
<h2>Paris, France Tour</h2> | |
<p>$<span id="total">0</span> for <span id="nights-count">2</span> Nights</p> | |
<p> | |
<label for="nights">Number of Nights</label> | |
</p> | |
<p> | |
<input id="nights" value="7" type="number"> | |
</p> | |
</div> |
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
<div id="all-tours" class="links"> | |
<h1>Guided Tours</h1> | |
<ul> | |
<li class="tour usa" data-discount="199"> | |
<h2>New York, New York</h2> | |
<span class="details">$1,899 for 7 nights</span> | |
<button class="book">Book Now</button> | |
<a href="#" class="see-photos">See Photos</a> | |
<ul class="photos"> | |
<li> |
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
<?php | |
function woocommerce_product_custom_fields() | |
{ | |
global $woocommerce, $post; | |
echo '<div class="product_custom_field">'; | |
woocommerce_wp_text_input( | |
array( | |
'id' => '_custom_product_title', | |
'placeholder' => __('Arabic Product Title'), | |
'label' => __('Arabic Product Title', 'woocommerce'), |
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
/* Original vba script was from https://support.google.com/docs/thread/65089055/sheets-bengali-number?hl=en I just reversed for the reversed result.*/ | |
=arrayformula( | |
concatenate( | |
iferror( | |
vlookup( | |
mid(J15, row(J$1:J), 1), | |
{ | |
mid("০১২৩৪৫৬৭৮৯", row(J$1:J), 1), | |
mid("0123456789", row(J$1:J), 1) | |
}, |
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
/* Converted from Microsoft's shown example of number to currency words with aid of ChatGPT3 */ | |
function CurrencyToBangla(MyNumber) { | |
var Temp; | |
var Taka = ''; | |
var Poisha = ''; | |
var DecimalPlace, Count; | |
var Place = ['', '',' হাজার ', ' লাখ ', ' কোটি ', 'শত ', ' হাজার ', ' লাখ ', ' কোটি ']; | |
MyNumber = String(MyNumber).trim(); | |
DecimalPlace = MyNumber.indexOf('.'); | |
if (DecimalPlace > 0) { |
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
== TemplateData == | |
{{TemplateData header}} | |
<div style="width:auto; overflow:scroll"> | |
<templatedata> | |
{ | |
"description": "ব্যক্তির সম্পর্কে তথ্যছক", | |
"format": "{{_\n| __________________ = _\n}}\n", | |
"params": { | |
"honorific_prefix": { | |
"description": "সম্মানসূচক প্রথমাংশ(সমূহ), ব্যক্তির নামের উপরে দেখাবে", |
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
== টেমপ্লেটডাটা == | |
{{TemplateData header}} | |
<templatedata> | |
{ | |
"params": { | |
"name": { | |
"required": true, | |
"label": "হাসপাতালের নাম", | |
"type": "wiki-page-name", | |
"aliases": [ |
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
==টেমপ্লেটডাটা== | |
{{Collapse top|title=[[Wikipedia:TemplateData|TemplateData]] for this template used by [[mw:Extension:TemplateWizard|TemplateWizard]], [[Wikipedia:VisualEditor|VisualEditor]] and other tools}} | |
{{TemplateData header|noheader=1}} | |
<templatedata> | |
{ | |
"description": "পদস্থ কর্মকর্তার জন্য তথ্যছক", | |
"format": "{{_\n| ___________________ = _\n}}\n", | |
"params": { | |
"name": { | |
"label": "নাম", |
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
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}} | |
{{TemplateData header|noheader=1}} | |
<templatedata> | |
{ | |
"description": "ক্রিকেটারদের জন্য তথ্যছক। পরামিতির তালিকা ভীতিজনক; তাদের সব পূরণ করার প্রয়োজন নেই।", | |
"params": { | |
"name": { | |
"label": "নাম", | |
"description": "খেলোয়াড়ের ব্যবহৃত ‘ক্রিকেট’ নাম (যেমন সাকিব আল হাসান, এবি ডিভিলিয়ার্স)", | |
"type": "string", |
OlderNewer