Skip to content

Instantly share code, notes, and snippets.

Is this as good as pastebin?
Seems good enough!
And with history!
@recluze
recluze / gist:1399851
Created November 28, 2011 10:07
ArabTex Debugging
...paste contents here and save...
<div class='et-tabs-container' id='et-tabs-container98799'>
<ul class='et-tabs-control'>
<li><a href='#'>Sample Video 1</a></li>
<li><a href='#'>Sample Video 2</a></li>
<li><a href='#'>Basic Whiteboard Video</a></li>
<li><a href='#'>Advanced Whiteboard Video</a></li>
</ul> <!-- .et-tabs-control -->
<div class='et-tabs-content'>
<div class='et_slidecontent' style="padding: 20px;">
Test 1
# Masah Ka Bayan

Masah ka bayan

  • It is allowed to do masah (wipe with wet hand) on leather socks and better to wash feet fully.
  • Here, sock does not refer to modern socks but thick leather socks.

Necessary conditions for Masah

  1. Socks should have four qualities
  2. Should be thick enough to support themselves without tying
  3. It should be possible to walk 3 mile (shar'i) in socks
776914196 [com.berenikaalexandre.Matematika] 123 Test z matematiky z násobení, dělení, sčítání a odčítání ()
550412050 [com.smartmobilesoftware.general.funnyanimalsfree] Funny Animals for baby and preschool toddler - Play and learn ()
398023035 [com.swartzent.italktothedead] Ghost Detector Tool - Free EVP, EMF, and Tracking Tool ()
468634551 [com.codeglue.beerponghd] Beer Pong HD ()
642092305 [com.bgbisland.wpqathletes] Word Pic Quiz Famous Athletes - name the greatest faces in baseball, football, soccer and other sports ()
490079741 [com.dhollis.101drinking] Drinking Games 🍻 ()
568030064 [com.smartmobilesoftware.general.connectthedotsfree] Connect the Dots - Learn numbers and alphabet with fun animals - Preschool & Primary school - Age 1 to 6 ()
582978892 [com.smartmobilesoftware.general.funnyanimalsallinonefree] Funny Animals All in One for baby and preschool toddler - Play and learn ()
599577426 [com.MiracleStudios.TrollMaze] Scary Troll Maze Prank Free- Harlem Shake ()
644824809 [
model = Model()
# Y = [1, 0, 0, 1, 1, ... 1, 0, 1] # binary computed from n_predictors features
with model:
# Priors for unknown model parameters
# alpha = Beta('alpha', alpha=0.5, beta=0.5)
beta = Normal('beta', mu=0, tau=2. ** -2, shape=(1, n_predictors))
# expected probability
model = Model()
with model:
beta = Uniform('beta', lower=-10, upper=10, shape=(1, n_predictors))
p = tinvlogit(sum(beta * predictors, 1))
Y_obs = Bernoulli('Y_obs', p=p, observed=Y)
start = find_MAP()
step = NUTS(scaling=start)
trace = sample(mcmc_training_sample_size, step, start)
# multiAgents.py
# --------------
# Licensing Information: You are free to use or extend these projects for
# educational purposes provided that (1) you do not distribute or publish
# solutions, (2) you retain this notice, and (3) you provide clear
# attribution to UC Berkeley, including a link to http://ai.berkeley.edu.
#
# Attribution Information: The Pacman AI projects were developed at UC Berkeley.
# The core projects and autograders were primarily created by John DeNero
# ([email protected]) and Dan Klein ([email protected]).
# multiAgents.py
# --------------
# Licensing Information: You are free to use or extend these projects for
# educational purposes provided that (1) you do not distribute or publish
# solutions, (2) you retain this notice, and (3) you provide clear
# attribution to UC Berkeley, including a link to http://ai.berkeley.edu.
#
# Attribution Information: The Pacman AI projects were developed at UC Berkeley.
# The core projects and autograders were primarily created by John DeNero
# ([email protected]) and Dan Klein ([email protected]).