Skip to content

Instantly share code, notes, and snippets.

View jtemporal's full-sized avatar
😎
Working from home

Jessica Temporal jtemporal

😎
Working from home
View GitHub Profile
@jtemporal
jtemporal / robbyrussell.zsh-theme
Last active August 8, 2023 23:57
Robby Russel modified version
View robbyrussell.zsh-theme
PROMPT="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ )%{$fg[black]%}%c%{$reset_color%}"
PROMPT+=' $(git_prompt_info)'
PROMPT+="
%(?:%{$fg_bold[green]%}➜ $ :%{$fg_bold[red]%}➜ $ )%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}git:(%{$fg[red]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✘"
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
View out-operator-mongodb.js
/**
* $out
* Provide the name of the output collection.
*/
'augustmoviescomments'
View lookup-query-mongodb.js
/**
* $lookup
* from: The target collection.
* localField: The local join field.
* foreignField: The target join field.
* as: The name for the results.
* pipeline: The pipeline to run on the joined collection.
* let: Optional variables to use in the pipeline field stages.
*/
{
View match-query-mongodb.js
/**
* $match
* query: The query in MQL.
*/
{
date:{
$gte:ISODate("2002-08-01"),
$lt:ISODate("2002-08-31")
}
}
View keybase.md

Keybase proof

I hereby claim:

  • I am jtemporal on github.
  • I am temporal (https://keybase.io/temporal) on keybase.
  • I have a public key ASBQvco2xkvKpSFCD76TYpToWbo7S62oC3ZjIEZrW9QeHAo

To claim this, I am signing this object:

View heroku-failed-build-glibc
-----> Pelican app detected
-----> Installing Python (python-3.6.10)
-----> Ensure pip
python: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.25' not found (required by python)
! Push rejected, failed to compile Pelican app.
View pelicanconf_detalhes_depois.py
STATIC_PATHS = [
'images',
'extra/robots.txt',
'extra/favicon.ico',
'extra/favicon.png',
# Site estático da primeira edição do evento
'conf-1'
]
EXTRA_PATH_METADATA = {
View estrutura_content.txt
content
├── conf-1
│   └── assets
│   ├── css
│   ├── fonts
│   ├── img
│   │   ├── keynotes
│   │   └── palestrantes
│   └── js
├── extra
View estrutura_extra.txt
extra
├── conf-1
| ├── assets
| │ ├── css
| │ ├── fonts
| │ ├── img
| │ │ ├── keynotes
| │ │ └── palestrantes
| │ └── js
| └── index.html
View pelicanconf_detalhes_durante_2.py
STATIC_PATHS = [
'images',
'extra/robots.txt',
'extra/favicon.ico',
'extra/favicon.png',
# Site estático da primeira edição do evento
'extra/conf-1/'
]
EXTRA_PATH_METADATA = {