Moved to here.
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
var data = { | |
"version": [1439, 6], | |
"startDate": [1426, 2, 1], | |
"startJd": 2453442 + 325, | |
"monthLen": [ | |
//[1426, 0, 29, 30, 29, 30, 30, 30, 30, 29, 30, 29, 29], | |
[1427, 30, 29, 29, 30, 29, 30, 30, 30, 30, 29, 29, 30], | |
[1428, 29, 30, 29, 29, 29, 30, 30, 29, 30, 30, 30, 29], | |
[1429, 30, 29, 30, 29, 29, 29, 30, 30, 29, 30, 30, 29], | |
[1430, 30, 30, 29, 29, 30, 29, 30, 29, 29, 30, 30, 29], |
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
<?php | |
header('Content-Type: text/plain'); | |
if (isset($_POST['ip'])) { | |
$ip = $_POST['ip']; | |
if (isValidIP($ip)) { | |
fwrite(fopen('ip.txt', 'w'), $_POST['ip']); | |
} | |
} else { | |
$ip = fgets(fopen('ip.txt', 'r')); |
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
{ | |
"123": "application/vnd.lotus-1-2-3", "ez": "application/andrew-inset", | |
"aw": "application/applixware", "atom": "application/atom+xml", | |
"atomcat": "application/atomcat+xml", "atomsvc": "application/atomsvc+xml", | |
"bdoc": "application/x-bdoc", "ccxml": "application/ccxml+xml", | |
"cdmia": "application/cdmi-capability", "cdmic": | |
"application/cdmi-container", "cdmid": "application/cdmi-domain", | |
"cdmio": "application/cdmi-object", "cdmiq": "application/cdmi-queue", | |
"cu": "application/cu-seeme", "mpd": "application/dash+xml", | |
"davmount": "application/davmount+xml", "dbk": "application/docbook+xml", |
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
{ | |
"آ": "⠜", | |
"ا": "⠁", | |
"ب": "⠃", | |
"پ": "⠏", | |
"ت": "⠞", | |
"ث": "⠹", | |
"ج": "⠚", | |
"ﭺ": "⠉", | |
"ح": "⠱", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
mort | morx | kerx | trak | Font Name |
---|---|---|---|---|
x | /Library/Fonts/AlBayan.ttc | |||
x | /Library/Fonts/Zapfino.ttf | |||
x | /Library/Fonts/Silom.ttf | |||
x | x | /Library/Fonts/Kefa.ttc | ||
x | /Library/Fonts/Nadeem.ttc | |||
x | /Library/Fonts/KufiStandardGK.ttc | |||
x | x | /Library/Fonts/Kannada Sangam MN.ttc | ||
x | /Library/Fonts/Papyrus.ttc |
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
# coding: utf-8 | |
# In[102]: | |
get_ipython().system('wget https://36-24718300-gh.circle-artifacts.com/0/root/project/ABI.json') | |
#https://github.com/ldo/harfpy/blob/master/harfbuzz.py | |
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
# Derived from fonttools, all rights of this goes to fonttools projects | |
from fontTools.misc import sstruct | |
import struct | |
ResourceForkHeader = """ | |
> # big endian | |
dataOffset: L | |
mapOffset: L | |
dataLen: L |
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
// This is a super simplified example of how to use the new dagger.android framework | |
// Forked from https://gist.github.com/vestrel00/64be913f954989fe52c674247e093218/ | |
// but changed to have less boilerplate using the new features. | |
// Used on https://github.com/ebraminio/DroidPersianCalendar also | |
// App.java | |
public class App extends DaggerApplication { | |
@Override | |
protected AndroidInjector<? extends DaggerApplication> applicationInjector() { | |
return DaggerAppComponent.builder().create(this); |