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 csv | |
def create_hebrew_dictionary( | |
input_csv="hebrew_frequency.csv", | |
output_dict="hebrew_dictionary.txt" | |
): | |
""" | |
Reads the CSV file from the scrape script and creates | |
a Hebrew -> Transliteration dictionary (or any mapping you choose). | |
Saves it in a simple text file for demonstration. |
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 | |
from bs4 import BeautifulSoup | |
import csv | |
def scrape_hebrew_frequency_list(output_csv="hebrew_frequency.csv"): | |
""" | |
Scrapes the Hebrew frequency table from TeachMeHebrew, merges rows with missing 'Rank', | |
and saves all table columns to a CSV file. | |
""" | |
url = "https://www.teachmehebrew.com/hebrew-frequency-list.html" |
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 sys | |
import os | |
# Configurable variables | |
DEFAULT_INPUT_FILE = "001_001.txt" | |
DEFAULT_OUTPUT_FILE = "unique_words_001_001.txt" | |
def extract_unique_words(input_file, output_file): | |
try: | |
# Read the content of the file |
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
-cur_console:t:'GIT' bash | |
-new_console:s1T50V -cur_console:t:"2b" powershell -NoExit -command [enum]::GetValues([System.ConsoleColor]) | Foreach-Object {Write-Host $_ -ForegroundColor $_}; cd desktop; netstat 333; | |
-new_console:s1T50H -cur_console:t:"3b" powershell -NoExit -command Write-Output 'Good morining mim!' -v; Write-Warning 'Main PS console'; $colors = $host.PrivateData; $colors.VerboseForegroundColor = 15; $colors.VerboseBackgroundColor = 9;$colors.WarningForegroundColor = 14; $colors.WarningBackgroundColor = 2; $colors.ErrorForegroundColor = 15; $colors.ErrorBackgroundColor = 12; cd desktop; | |
-new_console:s2T50H -cur_console:t:"4b" far C:/Users/mim/Desktop | |
-new_console:s2T50H -cur_console:t:"W1" powershell -NoExit -command Write-Verbose 'Goodmorining mim!' -v; $console = $host.UI.RawUI;$console.ForegroundColor = 15;$console.BackgroundColor = 1; start-sleep 3; $colors = $host.PrivateData; $colors.VerboseForegroundColor = 15; $colors.VerboseBackgroundColor = 9;$colors.WarningForegroundColor = 14; $col |
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
Object.objToArray = function(obj) { | |
var array = []; | |
for (key in obj) { | |
if (obj.hasOwnProperty(key)) array.push(key); | |
} | |
return array; | |
}; | |
alert(Object.objToArray(YourObject)); |
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 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys | |
if (!Object.keys) { | |
Object.keys = (function () { | |
'use strict'; | |
var hasOwnProperty = Object.prototype.hasOwnProperty, | |
hasDontEnumBug = !({toString: null}).propertyIsEnumerable('toString'), | |
dontEnums = [ | |
'toString', | |
'toLocaleString', | |
'valueOf', |
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
var f = this; | |
var t = ''; | |
var props = f.reflect.properties; | |
for (var i = 0; i < props.length; i++) { | |
t += ('this property ' + props[i].name + ' is ' + f[props[i].name] + "\n"); | |
} | |
alert(t); |
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
void setup(){ | |
ImageIcon titlebaricon = new ImageIcon(loadBytes("myicon.png")); | |
frame.setIconImage(titlebaricon.getImage()); | |
} |
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
var myPath = (app.activeDocument.fullName.parent.fsName).toString().replace(/\\/g, '/'); | |
alert(myPath); |
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
var myPath = app.activeDocument.filePath; | |
alert(myPath); |
NewerOlder