- zanco/a/os/as
- xanca/xanques
- zancudo/a/os/as
- xanquer/a/s/eres
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
| #!/bin/bash | |
| # crea la carpeta video a l'escriptori, si no existeix | |
| mkdir -p /home/felip/Escriptori/video | |
| # copia tot el que hi ha a DVD_RECORDER a la carpeta VIDEO de l'escriptori | |
| sudo cp -r /media/felip/DVD_RECORDER /home/felip/Escriptori/video | |
| # canvia el propietari de tot el contingut de la carpeta video | |
| sudo chown -R felip:felip /home/felip/Escriptori/video |
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
| Index: browsersniff.php | |
| =================================================================== | |
| --- browsersniff.php (revision 965888) | |
| +++ browsersniff.php (working copy) | |
| @@ -1,4 +1,4 @@ | |
| -<?php | |
| + <?php | |
| /** | |
| * @package Browser-Sniff | |
| * @author Priyadi Iman Nurcahyo | Bruno Andrade Pedrassani |
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
| <rulegroup id="determinant_nom_estricte" name="Revisa concordança determinant+nom estrictament"> | |
| <rule> | |
| <pattern> | |
| <token postag="D...S.*" postag_regexp="yes"></token> | |
| <token postag="N..P.*" postag_regexp="yes"><exception postag="N..[SN0].*" postag_regexp="yes"></exception></token> | |
| </pattern> | |
| <message>Falta de concordança de nombre entre «\1» i «\2».</message> | |
| <short>Concordança de gènere i nombre dubtosa</short> | |
| <example type="incorrect">Porta <marker>el cotxes</marker>.</example> | |
| <example type="correct">Porta el cotxe.</example> |
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
| package org.languagetool.commandline; | |
| import java.io.*; | |
| public class StdinTest { | |
| public static void main (String [] args) throws Exception { | |
| StdinTest stdinTest = new StdinTest(); | |
| } |
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
| com | |
| para | |
| self | |
| molt | |
| dos | |
| default | |
| log | |
| anti | |
| till | |
| mid |
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
| use strict; | |
| use warnings; | |
| use Text::Aspell; | |
| my $speller = Text::Aspell->new; | |
| die unless $speller; | |
| $speller->set_option('lang','en-US'); | |
| $speller->set_option('sug-mode','fast'); |
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
| #!/usr/bin/python | |
| import sys | |
| # comprovem el parametre | |
| if len(sys.argv)<2: | |
| print >> sys.stderr, "ERROR: Cal utilitzar un fitxer." | |
| # carreguem el diccionari correcte en memoria | |
| dicc = {} |
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
| #!/bin/bash | |
| sed -e "s/[^[:alnum:]\\*]/ /g" -e "s/[[:blank:]]+/ /g" | tr " " "\\n" | sed -e "/^$/d" | grep "\*" | sort | uniq -c | sort -r -n | sed -e "s/\*//g" |
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 | |
| /*---------------------------------------------------------------------------------*/ | |
| /* Photos CPT Widget */ | |
| /*---------------------------------------------------------------------------------*/ | |
| class WP_Widget_Photos extends WP_Widget { | |
| function WP_Widget_Photos() { | |
| $widget_ops = array('classname' => 'widget-photos', 'description' => __('Display Photos from your site.', 'woothemes')); | |
| $control_ops = array('width' => 400, 'height' => 350); | |
| $this->WP_Widget('woo_photos', __('Woo - Photos', 'woothemes'), $widget_ops, $control_ops); |