406 Matching Annotations
  1. Feb 2021
    1. https://desinformemonos.org/wp-content/uploads/2016/10/el-traspatio-4.jpg

      Entre 2008 y 2013, en el terreno llamado Arroyo El Navajo, ubicado a 94 kilómetros de la frontera con Estados Unidos, se encontraron los fragmentos de huesos de al menos 24 mujeres que fueron secuestradas en Ciudad Juárez durante el periodo en el que la zona estuvo militarizada por el despliegue de agentes federales y soldados, como parte del “Operativo Conjunto Chihuahua

    1. nix-channel --list #<output> nixpkgs https://nixos.org/channels/nixpkgs-unstable The command returns a name for each channel (e.g., nixpkgs) and an URL. Note When running nix-env with the parameter -A, one can select the channel to get the package from. Such a command looks like nix-env -iA channelname.packagename.

      Instead of #<output> it should have said channel-name instead at the top nix-channel example to keep it consistent.

    2. However, using channels is not fully reproducible, as a channel may evolve to incorporate updates.

      TODO: Find other sources about this topic. I remember this mentioned already (and it makes) sense, but need to learn more.

      TODO: What is a better alternative? An own repo? Flakes? Can cachix help?

      It says right below that pinning can help but keep looking.

      When package reproducibility become a major concern, as it is the case in this tutorial, it is preferable to refer to a pinned version of the nixpkgs repository instead — i.e, a specific commit of the repository or an immutable archived tarball. The ability to pin the version of nixpkgs is powerful, it will ensure that a package is always constructed from the same Nix source. As we go deeper in the tutorial we avoid using channels in favor of pinned environments.

    1. 19.3. Submitting security fixes Security fixes are submitted in the same way as other changes and thus the same guidelines apply. If the security fix comes in the form of a patch and a CVE is available, then the name of the patch should be the CVE identifier, so e.g. CVE-2019-13636.patch in the case of a patch that is included in the Nixpkgs tree. If a patch is fetched the name needs to be set as well, e.g.: (fetchpatch { name = "CVE-2019-11068.patch"; url = "https://gitlab.gnome.org/GNOME/libxslt/commit/e03553605b45c88f0b4b2980adfbbb8f6fca2fd6.patch"; sha256 = "0pkpb4837km15zgg6h57bncp66d5lwrlvkr73h0lanywq7zrwhj8"; }) If a security fix applies to both master and a stable release then, similar to regular changes, they are preferably delivered via master first and cherry-picked to the release branch. Critical security fixes may by-pass the staging branches and be delivered directly to release branches such as master and release-*.
    2. 18.6. Patches Patches available online should be retrieved using fetchpatch. patches = [ (fetchpatch { name = "fix-check-for-using-shared-freetype-lib.patch"; url = "http://git.ghostscript.com/?p=ghostpdl.git;a=patch;h=8f5d285"; sha256 = "1f0k043rng7f0rfl9hhb89qzvvksqmkrikmm38p61yfx51l325xr"; }) ];

      ... and from Chapter 11:

      fetchpatch works very similarly to fetchurl with the same arguments expected. It expects patch files as a source and and performs normalization on them before computing the checksum. For example it will remove comments or other unstable parts that are sometimes added by version control systems and can change over time.

      ... and also adding highlight of 19.3. Submitting security fixes

      because these are the only places I've seen fetchpatch mentioned.

      From the wild in freeswitch/default.nix in Nixpkgs:

      stdenv.mkDerivation rec {
        pname = "freeswitch";
        version = "1.10.5";
        src = fetchFromGitHub {
          owner = "signalwire";
          repo = pname;
          rev = "v${version}";
          sha256 = "18dhyb19k28dcm1i8mhqvvgm2phsrmrwyjmfn79glk8pdlalvcha";
        };
      
        patches = [
          # https://github.com/signalwire/freeswitch/pull/812 fix mod_spandsp, mod_gsmopen build, drop when updating from 1.10.5
          (fetchpatch {
            url = "https://github.com/signalwire/freeswitch/commit/51fba83ed3ed2d9753d8e6b13e13001aca50b493.patch";
            sha256 = "0h2bmifsyyasxjka3pczbmqym1chvz91fmb589njrdbwpkjyvqh3";
          })
        ];
        postPatch = ''
          patchShebangs     libs/libvpx/build/make/rtcd.pl
          substituteInPlace libs/libvpx/build/make/configure.sh \
            --replace AS=\''${AS} AS=yasm
      
          # Disable advertisement banners
          for f in src/include/cc.h libs/esl/src/include/cc.h; do
            {
              echo 'const char *cc = "";'
              echo 'const char *cc_s = "";'
            } > $f
          done
        '';
      
    1. The function mkDerivation in the Nixpkgs standard environment is a wrapper around derivation that adds a default value for system and always uses Bash as the builder, to which the supplied builder is passed as a command-line argument. See the Nixpkgs manual for details.

      "Documented" in the Nixpkgs manual under 6.1 Using stdenv.

      Used the double-quotes above because I don't consider it well documted. Will give it a try too; worst case scenario is that I'll fail as well.

    2. See annotations with the build-phases tag.


      Why are the build phases not enumerated in the Nix manual? If the instructions on how to create a derivation (and thus, a package) then why not go all in instead of spreading out information in different manuals, making the subject harder to grasp?...

      (By the way, it is documented in the Nixpkgs manual under 6.5 Phases; not sure why it is not called build phases when every page refers to them like that.)

    3. Add the package to the file pkgs/top-level/all-packages.nix. The Nix expression written in the first step is a function; it requires other packages in order to build it. In this step you put it all together, i.e., you call the function with the right arguments to build the actual package.

      In addition to this rant, step 3. should be more generic, instead of tying it to Nixpkgs; at least, either show how to build your own Nix expression repo, or don't add this step, but it is not at all necessary to write a derivation. There is a Nixpkgs manual for a reason.

    4. $ nix-env -i firefox --substituters ssh://alice@avalon This works similar to the binary cache substituter that Nix usually uses, only using SSH instead of HTTP

      So a substitute is a built binary for a given derivation, and a substituter is a server (or binary cache) that serves pre-built binaries, right?

      Update: in the next line it says that "it will fall back to using the binary cache substituter", so I guess that answers it.

    5. When you ask Nix to install a package, it will first try to get it in pre-compiled form from a binary cache. By default, Nix will use the binary cache https://cache.nixos.org; it contains binaries for most packages in Nixpkgs. Only if no binary is available in the binary cache, Nix will build the package from source. So if nix-env -i subversion results in Nix building stuff from source, then either the package is not built for your platform by the Nixpkgs build servers, or your version of Nixpkgs is too old or too new.

      binary caches tie in with substitutes somehow; get to the bottom of it. See annotations with the substitute tag.

      Maybe this?

    6. closure

      Another gem: who knows what a "closure" is.

      [This highlight] (a couple lines below) implicitly explains it though:

      The command nix-copy-closure copies a Nix store path along with all its dependencies to or from another machine via the SSH protocol. It doesn’t copy store paths that are already present on the target machine.

      or this, also just a couple lines below:

      the closure of a store path (that is, the path and all its dependencies)

    7. subscribes you to a channel that always contains that latest version of the Nix Packages collection.

      That is a misleading statement. The latest version is where the master branch points, isn't it?

      So a channel points to a Nixpkgs commit (on a branch named after the channel) where all packages inside are deemed stable, and all packages are built to have available binary substitutes by a (hydra) build farm.

    8. In Nix, different users can have different “views” on the set of installed applications. That is, there might be lots of applications present on the system (possibly in many different versions), but users can have a specific selection of those active — where “active” just means that it appears in a directory in the user’s PATH. Such a view on the set of installed applications is called a user environment, which is just a directory tree consisting of symlinks to the files of the active applications.
    9. Chapter 6. SecurityNix has two basic security models. First, it can be used in “single-user mode”, which is similar to what most other package management tools do: there is a single user (typically root) who performs all package management operations. All other users can then use the installed packages, but they cannot perform package management operations themselves.Alternatively, you can configure Nix in “multi-user mode”. In this model, all users can perform package management operations — for instance, every user can install software without requiring root privileges. Nix ensures that this is secure. For instance, it’s not possible for one user to overwrite a package used by another user with a Trojan horse.

      Would have been nice to link these to the install chapter where single- and multi-user modes were mentioned.

      How would this look in a topic-based documentation? I would think that his chapter would be listed in the pre-requisites, and it could be used to buld different reading paths (or assemblies in DocBook, I believe) such as practical, depth-first (if there are people like me who want to understand everything first), etc.

    10. You can uninstall Nix simply by running: $ rm -rf /nix

      Yeah, I there are several tickets and posts about how this is not entirely true.

    11. nix-shell '<nixpkgs>' -A pan

      What is happening here exactly?

      nix-shell's syntax synopsis always bugged because it looks like this

      SYNOPSIS
      nix-shell [--arg name value] [--argstr name value] [{--attr | -A} attrPath] [--command cmd] [--run cmd] [--exclude regexp] [--pure] [--keep name] {{--packages | -p} packages...  | [path]}
      

      and the canonical example is nix-shell '<nixpkgs>' -A pan; what tripped me up is that path is usually the first in examples, and I thought that the position of arguments are strict. As it turns out, nix-shell -A pan '<nixpkgs> is just as valid.

      Side note<br> Apparently there is no standard for man pages. See 1, 2.

      '<nixpkgs>' path is the one specified in the NIX_PATH environment variable, and -A pan looks up the pan attribute in pkgs/top-level/all-packages.nix in the Nixpkgs repo.

    12. since packages aren’t overwritten, the old versions are still there after an upgrade. This means that you can roll back to the old version:

      Wouldn't hurt to tell folks that this is a convenience layer, and one could also just use the old package from the /nix/store, even though that path would be long and obscure; one could use symlinks of course.

      Or, onc could just use nix-shell -p that specifies a specific version (that's already in the store), but, of course, it's not that simple...

      https://github.com/NixOS/nixpkgs/issues/9682

    1. example: get an environment which is used to build irssi (also see nix-shell) $ nix-build $NIXPKGS --run-env -A irssi example: get a persistent environment which is used to build irssi $ nix-build $NIXPKGS --run-env -A irssi --add-root

      nix-build <path> --run-env has been superseded by nix-shell. From Nix manual section C.12. Release 1.6 (2013-09-10):

      The command nix-build --run-env has been renamed to nix-shell.

  2. Jan 2021
  3. Dec 2020
    1. A finales de la década de los 70 y comienzos de la década de los 80 del siglo XX, la necesidad de materia oscura no bariónica para explicar la formación de estructuras cosmológicas, junto con una muestra cada vez mayor de curvas de rotación de galaxias que mostraban un comportamiento plano, consolidaban la hipótesis de la existencia de materia oscura en el Universo.

  4. Nov 2020
    1. EBF was much more potent than Pax5 in inducing B celldevelopment, as its expression in MPPs yielded at least 100-foldmore B lineage progeny than did expression of Pax5 (Fig. 3band data not shown). These data suggest that promotion of B cellgeneration from MPPs by EBF is not mediated solely throughactivation of Pax5 expression.

      EBF expression represses and restricts alternative lineage genes, also help promote B cell independently of Pax 5.

  5. Oct 2020
    1. However, I do feel that the way that he speaks is particu-larly African American. Th is refers more to his rhetoric, intona-tion, and style. However, his speech or the extent to which he plays up his Black manner of speaking varies depending on his setting.

      what is a "black manner" of speaking? is the same as the statement above it that he speaks African American? does this imply the language or just a form of speaking like he can communicate and he knows what African Americans want?

      The website below explains that speaking African American is a unique vocabulary with different accents and grammar

  6. Sep 2020
    1. “You are free to eat from any tree in the garden;(W) 17 but you must not eat from the tree of the knowledge of good and evil,(X) for when you eat from it you will certainly die.”

      God instructed Adam and Eve to eat whatever they desired, though prohibited them to eat from the tree of the knowledge of good and evil. In Robin Wall Kimmerer's "Skywoman Falling", she explained how in Indigenous culture, they follow Original Instructions. These "instructions" are not rules but rather guidelines for each person. Kimmerer explains how during Skywoman's time, the first people's understanding of the Original Instructions were to care for the and have respect for hunted animals, value family, and hold respectful ceremonies for their beliefs.

    2. 19 Now the Lord God had formed out of the ground all the wild animals(AA) and all the birds in the sky.(AB) He brought them to the man to see what he would name them; and whatever the man called(AC) each living creature,(AD) that was its name. 20 So the man gave names to all the livestock, the birds in the sky and all the wild animals.

      God had given Adam the responsibility to name all living creatures on Earth after the first days of creation. In Ursula K. Le Guin’s “She Unnames Them”, the idea of how labels or given names could take away from “personal choice” and “freedom” was explored throughout the text. Instead of believing that humans are above animals and living creatures, Buddhists view animals as very sacred beings and are to be shown with respect and to never be harmed. They also believe that humans can be reborn as animals, all interconnected within one another, supporting their beliefs of showing extreme care towards animals and allowing them to live freely.

    3. 4 “You will not certainly die,” the serpent said to the woman.(AR) 5 “For God knows that when you eat from it your eyes will be opened, and you will be like God,(AS) knowing good and evil.”

      This verse is referenced heavily throughout contemporary literature. The idea of being tricked or pressured into something you are told is wrong.

      the intertextual connection is to the classic tale of, "Little Red Riding Hood." The girl is strictly instructed by her Grandmother to stay on the path to her house. Instead, naive Little Red is tricked by the Wolf to telling her where she is going. The Wolf goes to the Grandmother's house and eats her.

    4. When the woman saw that the fruit of the tree was good for food and pleasing to the eye, and also desirable(AT) for gaining wisdom, she took some and ate it.

      Despite being told by God that she and her husband were not allowed to eat the fruit from the tree of the knowledge of good and evil, Eve gave into her temptations. The idea of the "forbidden fruit" has been carried into other pieces of literature, using an apple to symbolize a character's temptation leading to downfall.

      For example, in the fairy tale, Snow White and the Seven Dwarfs, when Snow White eats the poisoned apple, offered by the evil witch, who parallels the serpent, she falls into a death-like sleep.

    5. he will crush[j] your head,(BL)    and you will strike his heel.”

      God curses the serpent after deceiving Eve in the garden, and creates "enmity between [the serpent] and the woman." In the "Harry Potter" series by JK Rowling, the serpent is a symbol of evil, and near the end of the books, is the only piece of evil left to destroy before good can truly be restored.

  7. eclass.srv.ualberta.ca eclass.srv.ualberta.ca
    1. Gary Nabhan has written, we can’t meaningfully proceed with healing, with restoration, without “re-story-ation.”

      This is an example of allusion- Robin Kimmerer is referencing Gary Nabhan's literature known as "Food from the Radical Center" without directly naming the text. This book relates how we eat with stories of collaboration, calling on each of us to restore the nation's capacity to feed and nourish. This is a connection to the message behind "Skywoman Falling."

    2. Original Instructions.

      These instructions are about creating peace with ourselves, others, and the land. The idea of pacifism and hospitality were encouraged. These are teachings that are passed down generation to generation among many Indigenous groups.

    1. El matrimonio igualitario Argentina, Uruguay, México, Brasil y Colombia son los únicos países de América Latina que han legalizado el matrimonio de parejas homosexuales, con todas las condiciones legales que tienen los matrimonios convencionales. De igual manera, Holanda, Bélgica, Suecia, Alemania, Sudáfrica, España, Inglaterra, Portugal y otras 12 naciones más han hecho lo propio.   Entretanto, sólo 11 países permiten la unión civil entre parejas del mismo sexo (no incluye todos los derechos legítimos maritales) entre estos Ecuador, Chile, Austria, Italia y Grecia. Cambio de identidad El proceso de cambio de género o sexo es un proceso quirúrgico y psicológico que contempla el cambio físico. En la actualidad, naciones como Venezuela, Colombia, Uruguay, Bolivia y Perú permiten que la transformación también sea legal, con el cambio del nombre y género en los documentos de identidad de las personas LGBTI. Sin embargo, en Brasil y Argentina, este tipo de decretos han sido desaprobados o son procesos difíciles por lo riguroso de los exámenes y requisitos que truncan el derecho al trámite. Igualdad en derechos patrimoniales Las garantías, protecciones legales en los matrimonios tras el fallecimiento y divorcio también son logros alcanzados en menos de 20 años por la comunidad LGBTI. Pero estos aún están condicionados dependiendo del país, por la diferencia entre permitir la unión civil (algunos derechos de cónyuges) o el matrimonio igualitario (derechos legítimos).   Adopción homoparental Uruguay, México, Canadá (el primer país en permitirlo en 1999) y algunos estados de EE.UU. han legalizado la adopción para personas unidas del mismo sexo. Asimismo, España, Holanda, Francia y otros permiten que las parejas no heterosexuales puedan tener hijos por medio de la adopción legal. Protección a víctimas de discriminación Hasta 1948 la homosexualidad era considerada una enfermedad mental, pero esto cambió lo que permitió la apertura de sistemas de protección a víctimas de discriminación y agresión. En la actualidad, existen programas de atención social y judicial para el seguimiento de los casos de hostigamiento y asesinatos contra los homosexuales. Además hay coberturas de salud gratuitas para tratar enfermedades como el sida y la programas de integración laboral en distintas áreas. Tags Día contra la Homofobia LGBTI Derechos Discriminación BBC - La Vanguardia - El Excelsior - La Semana Por: teleSUR- db - SB - JCM Noticias Relacionadas OLP exhorta a Oriente Medio a tomar medidas contra Guatemala Bolivia afirma que Venezuela frena dominación de EE.UU. Chavismo toma Caracas en cierre de campaña de Nicolás Maduro Rodríguez: Comicios en Venezuela definen futuro de América Lati googletag.cmd.push(function() { googletag.display('div-gpt-ad-1493942656293-0'); });//]]>--> por Taboolapor TaboolaEnlaces PatrocinadosEnlaces PatrocinadosEnlaces PromovidosEnlaces PromovidosTe RecomendamosHepatitis C | Search AdsSigns of Hepatitis C (Some May Surprise)Hepatitis C | Search AdsPeoplewhizOne Thing All Cheaters Have In Common, Brace YourselfPeoplewhizDID U KNOW ReviewsUnsold 2019 SUVs Going for Pennies on the Dollar: Great For SeniorsDID U KNOW ReviewsDownload Now on Google Play | Neverland CasinoSan Jose Woman Was Playing on This Free Slot Machine App, When All Of A Sudden She Won BigDownload Now on Google Play | Neverland CasinoGet it on Google Play | House Of FunCasinos Will Hate You For Doing This but They Can’t Stop YouGet it on Google Play | House Of FunFungus Clear SupplementsSurgeon: Nail Fungus? Do This Immediately (Watch)Fungus Clear SupplementsCCPA Notice window._taboola = window._taboola || []; _taboola.push({ mode: 'thumbnails-a', container: 'taboola-below-article-thumbnails', placement: 'Below Article Thumbnails', target_type: 'mix' }); window.fbAsyncInit = function() { FB.init({ appId : '1009084795820552', xfbml : true, version : 'v2.5' }); }; (function(d, s, id){ var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/es_LA/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/es_LA/sdk.js#xfbml=1&version=v2.5&appId=1009084795820552"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); $(document).ready(function () { $("#comentNativos").addClass("coment"); $("#btn-face").addClass("activeComent"); $("#btn-cf").click(function () { // alert("btn-facebook"); $("#comentNativos").addClass("coment"); $("#btn-face").addClass("activeComent"); $(".fb_ltr").css({width: "940px"}); $("#comentFace").removeClass("coment"); $("#btn-nativo").removeClass("activeComent"); }); $("#btn-cn").click(function () { // alert("btn-nativo"); $("#comentFace").addClass("coment"); $("#comentNativos").removeClass("coment"); $("#btn-nativo").addClass("activeComent"); $("#btn-face").removeClass("activeComent"); }); }); Comentarios con facebook () Comentarios con teleSUR (0) Comentarios 0 Ingresa o Regístrate para poder comentar, usar el foro y más Ingresar Regístrate Nota sin comentarios. //]]>--> footer .legal{ font-size:15px; background:var(--bg-footer-legal,#1c2036); border-bottom: 2px solid #fff; opacity:.5; float:left; } footer .colFootRedes .wpFootSuscrip input[type="text"]:focus{ border: 2px solid #555; border-radius:5px; width:320px; height:46px; } footer .colFootRedes .wpFootSuscrip input[type="text"]{ border: 2px solid #555; border-radius:5px; width:320px; height:46px; } footer .colFooti h4{ color:transparent; cursor:context-menu; } .vivoFooter{ position:relative; } .vivoFooter h4{ position:absolute; margin-top: 6%; margin-left:8em; } footer .wpRedesFoot{ top:135px; border:none; } footer .wpRedesFoot a{ margin-top:-20px; } footer .wpRedesFoot a:hover{ opacity:0.5; } .vivoFooterBoton{ Width:25em; height:3.5em; border-radius:5px; border: none; color:#fff; margin-top:5px; background:#9a1212; transition:1s; font-weight:bolder; } .vivoFooterBoton:hover{ opacity:0.8; transition:1s; } .vivoFooterBoton a{ font-size:16px; } .colFoot img{ margin-left:3px; margin-bottom:-5%; } footer .colFoot{ font-size:12px; line-height:15px; } .colFooti a{ font-size:14px; line-height:15px; } footer .colFootRedes .wpFootSuscrip input[type="submit"]{ background:url("/https://www.telesurtv.net/arte/subNew.png"); background-repeat: no-repeat; width:9%; line-height:32px; margin-left:0px; color:transparent; } footer .colFooti{ color:transparent; font-size:0px; cursor:context-menu; } @media only screen and (max-width: 600px) { footer .wpRedesFoot a{ margin-right:-5px; } footer .colFootRedes .wpFootSuscrip input[type="text"]{ width:210px; } footer .colFootRedes .wpFootSuscrip input[type="text"]:focus{ width:210px; } footer .colFootRedes .wpFootSuscrip input[type="submit"]{ width:12%; color:transparent; } .vivoFooterBoton{ width:20em; margin-top:8px; margin-bottom:5px; } footer .colFooti{ margin-left:28%; margin-bottom:5%; } } Términos de uso Sobre teleSUR Acerca teleSUR Contactos Equipo Empleos Terminos de uso Cobertura satelital Canales Latinoamérica y el Caribe Mundo Deportes Cultura Opinión Programación Servicios Catálogo Multimedia Blog Videos teleSUR Inglés teleSUR Inglés

      https://hyp.is/go?url=https%3A%2F%2Fwww.telesurtv.net%2Fnews%2Fhomofobia-lgbti-derechos-discriminacion-logros-retrasos-20180517-0018.html&group=__world__

  8. Aug 2020
    1. It will find there is "very little evidence that the virus is transmitted in schools",

      The reporter interviewed Professor Russel Viner, president of Royal College of Pediatrics and Child Health. Apparently, a study was conducted through April to June which collected information of 20,000 students and 100 teachers yet there is no link to this study, did not get peer reviewed or published. It is all just claims at this point. We have no knowledge if these are private schools or public, if there were any safety measures in place, if this included online classes vs in class.

      However, according to CDC and the respected studies it cited, there seems to be lower transmission rates among children and transmission from child to family, but this remains inconclusive. There still needs to be more evidence to be gathered.

  9. May 2020
    1. If your hosting provider does not support HTTPS, the following options are available: You can contact your web hosting provider: tell them you want a free HTTPS certificate through Let’s Encrypt. You’re probably not the only one using your web hosting provider service who wants HTTPS. You can request that your web hosting provider offer Let’s Encrypt HTTPS certificates as a free part of their hosting package. An effective way to make this ask is through email, their help desk system, or by contacting the web hosting provider through social media. You can switch to a different web hosting provider. Find a web hosting provider who offers full HTTPS support as part of their web hosting package by checking our list. You might be able to use Certbot. If you have SSH access to the server your website is hosted on, you might be able to use Certbot. You will need to know the software and system your server is running on. After you confirm the software and system information, you can use the dropdown menus above to generate specific instructions for running Certbot on your server through the command line.
    1. ABSTRACTLet’s Encrypt is a free, open, and automated HTTPS certificate au-thority (CA) created to advance HTTPS adoption to the entire Web.Since its launch in late 2015, Let’s Encrypt has grown to become theworld’s largest HTTPS CA, accounting for more currently valid cer-tificates than all other browser-trusted CAs combined. By January2019, it had issued over 538 million certificates for 223 million do-main names. We describe how we built Let’s Encrypt, including thearchitecture of the CA software system (Boulder) and the structureof the organization that operates it (ISRG), and we discuss lessonslearned from the experience. We also describe the design of ACME,the IETF-standard protocol we created to automate CA–server inter-actions and certificate issuance, and survey the diverse ecosystemof ACME clients, including Certbot, a software agent we created toautomate HTTPS deployment. Finally, we measure Let’s Encrypt’simpact on the Web and the CA ecosystem. We hope that the successof Let’s Encrypt can provide a model for further enhancements tothe Web PKI and for future Internet security infrastructure.
    1. public-benefit digital infrastructure projects, the first of which was the Let's Encrypt certificate authority. ISRG's founding directors were Josh Aas and Eric Rescorla. The group's founding sponsors and partners were Mozilla, the Electronic Frontier Foundation, the University of Michigan, Cisco, and Akamai.
    1. Certbot is part of EFF’s larger effort to encrypt the entire Internet. Websites need to use HTTPS to secure the web. Along with HTTPS Everywhere, Certbot aims to build a network that is more structurally private, safe, and protected against censorship. Certbot is the work of many authors, including a team of EFF staff and numerous open source contributors.
    1. d the mother often says “Don’t be like niggers” when the children are bad. A frequent phrase from the father is, “Look how well a white man does things.”

      They are taught that the n-word is shameful and bad while acting white is somewhat a higher class that they should be aiming for. This passage reminds me of a poem that I read in the past named Incident by Countee Cullen. In it is the incidents of the narrators encounters with racism and how it affected them even by an older age. This passage is similar as in the mother telling her children how to act in a certain way according to a certain ethnicity is impactful in a negative way.

  10. Dec 2019
    1. I would tell him the same statement as the men in truck who were beating him and at that moment I felt that I was the same. I was never raised to watch violence happen against innocent people so I put my ignorance to the side and decided to help.

      whereas some individuals may have radical beliefs but are not members of a radical movement, and do not carry out violent actions.

    2. To top it off if I would add a racial slurs and inform them that they did not belong on the earth once in a while just for my own satisfaction

      Dehumanization research suggests that when people see others as less than human, empathy centers in the brain deactivate. For example, people who commit mass violence, cruelty, or hate crimes often rationalize these actions by comparing the victims to animals.

    3. I cut out all forms of communication with my Muslim friends and I showed an enormous amount of resentment to my Muslim neighbors and co workers

      At the heart of the process of radicalization leading to violence is a dynamic that involves individuals severing ties with those in their immediate environment (family, friends, colleagues, etc.),

    4. The whole country was in mental chaos and I never had been in such a destructive mental state at the time. It was hard to believe that someone would do this following a faith that is supposedly promotes peace

      Following the 9/11 and 7/7 attacks Islamophobia intensified, which can be understood, at the psychological level, as an internal racist defence against overwhelming anxiety."

      https://www.ncbi.nlm.nih.gov/pubmed/19795546

    1. To top it off if I would add a racial slurs and inform them that they did not belong on the earth once in a while just for my own satisfaction

      Dehumanization research suggests that when people see others as less than human, empathy centers in the brain deactivate. For example, people who commit mass violence, cruelty, or hate crimes often rationalize these actions by comparing the victims to animals.

    2. The whole country was in mental chaos and I never had been in such a destructive mental state at the time. It was hard to believe that someone would do this following a faith that is supposedly promotes peace

      "Following the 9/11 and 7/7 attacks Islamophobia intensified, which can be understood, at the psychological level, as an internal racist defence against overwhelming anxiety."

    3. I would tell him the same statement as the men in truck who were beating him and at that moment I felt that I was the same. I was never raised to watch violence happen against innocent people so I put my ignorance to the side and decided to help.

      whereas some individuals may have radical beliefs but are not members of a radical movement, and do not carry out violent actions.

  11. Oct 2019
    1. Oh Thank Heaven for 7-Eleven!®A success story fueled by customers’ needs “Give the customers what they want, when and where they want it.” Joe C. Thompson Jr. | 7‑Eleven Founder The 7‑Eleven brand is known and loved around the world, and our iconic products are a big part of the American culture. And although we’ve grown significantly over the years, our focus stays fixed on making life easier for customers. This simple idea is the reason we’re the marketplace leader. It’s also why our customers, employees, Franchisees and community leaders are proud to be part of the 7‑Eleven story. Nonstop Innovation & Customer Obsession We Did 7‑Eleven has a legacy of innovation. We were the first to provide to-go coffee cups, offer a self-serve soda fountain, operate for 24 hours a day, and yes, we even coined the phrase “BrainFreeze®” in honor of the world’s favorite frozen drink. Then came the innovation of some of our most popular menu items: the SLURPEE® drink, the BIG GULP® and then the BIG BITE®. Now, we continue our history of innovation and power it through digital initiatives. We Will From our humble beginning as the world’s first convenience store, 7‑Eleven continues its pursuit of innovative ways to cater to a new, digital-savvy generation of shoppers. As technology redefines how customers shop, we make sure to remain two steps ahead. At 7‑Eleven, we are customer-obsessed. We always poll customers to ensure we are bringing them solutions that they can’t even imagine. From offering convenient and user-friendly technology that earns our customers free products to having an ice-cold SLURPEE® drink delivered straight to their door, we are the leader in convenience and we constantly put our customers at the center of design and development. We Are It’s no secret: customers are starved for time as our world becomes increasingly connected and on the go. Our digital team strives to be at the forefront of innovation, providing effortless and convenient solutions for our customers’ needs before they even know to ask for them. We are committed to developing experiences of the future by bringing our stores to our customers wherever they are and whenever they need us. We are continuing our long-standing legacy of innovation through software and technology enhancements. We are transforming our business, one digital initiative at a time. We are redefining convenience. Learn More About Our Apps The best kind of neighbor Convenience may be our focus, but serving is our business. And that business extends beyond our stores into the communities where our customers, employees and Franchisees live, work and play. Being a great neighbor is all about investing and getting involved. It’s also about responsibility, which is one of our key business principals. That’s why we put such a focus on serving people, improving our products and protecting the planet. 7‑Eleven is proud to set the standard for responsible retailing in the convenience industry. Learn more Our Culture To lead, we serve 7‑Eleven has always been about serving the needs of our customers. This philosophy has also extended to our 7‑Eleven team, which is why our Leadership Principles play such a big part in our organization. To lead, we serve. It’s a big idea and it makes a tremendous difference in the lives of our customers, our Franchisees and our licensees. All kinds of people with one focus: making life easier We’re the convenience leader for a reason – and it has everything to do with our diverse and multi-talented team of men and women who are passionate about making life convenient. For decades – nine to be exact – we’ve counted on their unique perspectives to help us innovate and grow. They are the reasons we continue to lead in the industry. Room to move around and grow Cross-functional learning is not just allowed at 7‑Eleven, it’s applauded. We’ve got the size, stability and resources that make it possible for employees to find rewarding careers. People in all facets of our global organization discover opportunities with room to move around, try on new roles and discover untapped talents. We know that when people love what they do, everyone wins. A top-five franchisor 7‑Eleven is a brand that’s recognized worldwide. We’ve also made a reputable name for ourselves in the franchise business, and are consistently ranked as a top-five franchisor. A turnkey business model, world-class training, ongoing corporate support and special financing programs are available to increase the success rates of our Franchisees. The Store Support Center: the engine behind our stores If our stores are the fuel for busy communities, then our Store Support Center is the fuel for our stores. This is where the innovating, strategizing, forecasting, training and troubleshooting take place. From operations management and logistics to real estate, IT and human resources, our Store Support Center teams work hard to further our mission of convenience, not only for customers, but also for our Franchisees, employees and the communities we serve.

      https://corp.7-eleven.com/corp/about#annotations:gEbOcPm6Eemv2Bv2QdZKbA

    1. 7-Eleven moves to support animal welfare By Nick Hall | 17 Feb 2019 View comments Global convenience chain, 7-Eleven has made major changes to its supplier sourcing agreement, eliminating caged eggs for the first time. The move follows ongoing criticism of the Australian cage egg farming industry, with several brands and chains making the early decision to move to wholly sustainable sourcing in-line with welfare standards. Working closely with suppliers across all states, 7-Eleven has now ensured that only free range eggs would be available for order by all stores. Clayton Ford, General Manager Corporate Affairs, 7-Eleven said the decision to phase out cage eggs was developed in accordance with franchisee wishes, with the convenience giant announcing it will increase support to assist in the transition. “Whilst our franchisees are free to engage with alternative suppliers due to our franchise agreement, we will continue to work alongside them to encourage their involvement in this initiative by sourcing free range eggs via our centralised supply chain,” Ford said. “We recognise that this is just one step, and we will continue to review animal welfare commitments in our supply chain and 7-Eleven branded products as opportunities arise.” Want to launch a convenience store of your own? Take a look at all available franchising opportunities here.

      https://www.franchisebusiness.com.au/7-eleven-moves-to-support-animal-welfare/#annotations:DQb_6Pm6EemWVyNU8bM-aQ

    1. WHEN it comes to the state of the environment, it’s easy to get swept up in the doom and gloom of it all. Global warming, high pollution levels, climate change and waste disposal all dominate the headlines, painting a bleak picture of what’s to come. But just because it seems hopeless doesn’t mean it is.T roubled times call for ingenious solutions, and Australia is home to some of the brightest ecovators in the world, like Robert Pascoe, Managing Director of environmental solutions company Closed Loop.Through its Simply Cups initiative, Closed Loop is tackling Australia’s overwhelming waste problem by teaming up with 7-Eleven to save 70 million coffee cups from landfill this year — equivalent to the number they sell each year. While the most sustainable option is forgoing a disposable cup for a reusable one, some circumstances are beyond your control. Like your inability to remember anything before you’ve had your morning coffee. Which is a bit of a catch 22, isn’t it? That’s why 7-Eleven are installing dedicated coffee cup recycling bins in over 200 of their stores nationally, as well as funding 50 other large-scale locations including offices, universities and construction sites as part of the initiative. Coffee cups are one of the largest contributors to litter waste in Australia, with an estimated one billion ending up in landfill each year because they are not recycled.Yep, unfortunately you read that right: one billion cups.Coffee cups are one of the largest contributors to litter waste in Australia, with an estimated one billion ending up in landfill each year because they are not recycled.“T here’s a lot of misinformation out there,” Mr Pascoe said. “The consumers aren’t at fault because ultimately they don’t know what can be recycled and what can’t. I think if we can get that information out there, then people will demand products that are made from recycled materials.”For the majority of us, learning that our disposable coffee cups fall into the category of what can’t be recycled is both confusing and devastating. But, as Mr Pascoe says: “You can’t unknow something once you know it.”“Part of the problem is they didn’t know they weren’t being recycled. A lot of people said, ‘oh no, I put my coffee cup into the recycling to be recycled’, but of course, they’re not,” he continued.A nd why is that, exactly? It’s because most paper coffee cups are lined with a waterproof plastic that makes them hard to recycle — but not impossible. And that’s where Simply Cups comes in. “We’ve come up with a system that can actually recycle these cups if we keep them separate. We’ve got technology available now to do it, but we have to have coffee cups kept as a separate stream. Or anything that has the plastic lining of milk cartons or juice boxes,” Mr Pascoe said. The technology he’s referring to is “kind of like an organic solvent” that works to separate compound materials. Invented by Dennis Collins in Ballarat, the technology was initially designed to separate the PVC material from the hessian used in truck liners and advertising banners.“Dennis called us and said, ‘I’ve got a solution for your coffee cups’,” Mr Pascoe said. “So now we’re building a plant that can process around 150 million coffee cups per year, which is about 1.5 thousand tonnes. That will only be about 10 per cent of disposable coffee cups alone, so we’re going to need quite a few of these plants eventually. We have the solution, but we really need the coffee cups. “That’s why we started the Simply Cups program.”And that’s where coffee addicts come in. Once they drop their coffee cups into a designated recycling bin, they will then be taken to a processing plant using this new technology. The inner plastic lining of the cups will be removed and then recycled into things like plastic outdoor furniture, safety equipment and food trays.A nother eco-minded initiative helping solve Australia’s waste problem is the anti food-waste website, Yume. The website fights food waste — which is a huge problem in Australia — by allowing consumers to buy surplus and unsold food from restaurants and cafes at half the price. The ‘wholesale marketplace for surplus food that saves you money while saving the planet’ shares the same idea as ‘YWaste’, an app allowing retailers to sell food that would otherwise be thrown away.Over its 40-year history, Patagonia has donated about $114 million to grassroots environmental organisations. Over its 40-year history, Patagonia has donated about $114 million to grassroots environmental organisations. Their advertising has begged consumers not to buy things they don’t need (even their own products) and they’ve implemented a program that repairs their products for free rather than replace them. Their commitment to the environment is reflected in the materials of their products too; wetsuits are made of natural rubber and raincoats are made from recycled plastic bottles. This year, the company launched Patagonia Action Works, a digital platform that aims that aims to connect people with environmental nonprofits, helping them get involved through events, petitions, and volunteering.H &M, too, are doing their bit to close the loop on fashion waste with their global campaign encouraging customers to recycle their clothes. They launched their garment collecting initiative in 2013, asking customers to drop off any unwanted items from their closets. Depending on the condition of the clothing, the items are either distributed to second-hand stores for resale, or recycled into other items like yarn, rags, and insulation materials.And just look at Elon Musk. He’s raking in bajillions of dollars every minute almost exclusively thanks to Tesla and SolarCity, which have disrupted an entire industry. While some snigger at his grand ideas — let’s colonise Mars! — the accomplishments of how he has changed the way we shop for cars are hard to deny.A fter a complicated relationship with French beauty giant L’Oreal, The Body Shop is now in the hands of ethical Brazilian beauty brand Natura, promising to return to its pioneering ethical business.“All of us share the aim of doing business as a transformational force for good and a force for change for society and for the environment. We couldn’t think of a better union to nurture our brand’s commitment to naturality and sustainability,” said the Body Shop’s Communications Manager, Jessica Styles. “In 2016, The Body Shop launched its new sustainability plan, Enrich Not Exploit, supporting the brand’s vision to be the most ethical and sustainable global business in the world.”“All of us share the aim of doing business as a transformational force for good and a force for change for society and for the environment. We couldn’t think of a better union to nurture our brand’s commitment to naturality and sustainability,”Jessica Styles, Body Shop’s Communications Manager The plan set fourteen targets to help The Body Shop become a "truly sustainable business", including powering all its stores with 100 per cent renewable energy, overhauling product packaging by slashing the use of fossil fuel-based wrapping and designing new sustainable innovations. This year there’s a special focus on protecting Red Pandas in Nepal, a species currently on the endangered list.“Now more than ever, companies have the platforms and frameworks to not only voice doing good for the planet and people but to also act on it. The more we see big brands doing their bit, the more it becomes entrenched as something that not only employees but customers should be thinking about,” Styles said. “It’s the big corporations of the world that can help foster and influence this through their own businesses.” Skin care brand Youth to The People has made a conscience decision to use 100 per cent recyclable packaging. Co-founder Joe Cloyes says the decision reflects the brand’s philosophies.“We believe in creating as little waste as possible, we believe in cruelty-free products, and we believe in sourcing the best ingredients for your health and your skin. It's just that simple,” he said. “Modern consumers care about their environment just as much as they care about their healthy skin, and they're very much connected. We have found it's very important to people.”FIND OUT how many cups of coffee you could be recycling EVEry yearHow many cups of coffee do you drink every day?How many days per week do you drink coffee?How many weeks per year do you drink coffee?Calculatecups of coffeecould be recycled These are but a few eco-minded initiatives that offer Australians the chance to do their part in securing a cleaner future for generations to come. For every company that spills millions of gallons of oil into our oceans, there are plenty more companies operating under a socially responsible ethos. They recognise enterprise and environmental responsibility can in fact go hand-in-hand.“I think every organisation should have a sustainability policy,” Mr Pascoe said. “There are plenty of organisations around that can have a positive impact on the environment. We’re talking about the effect they have on the environment, the way they consume energy, and the way they manage their waste. In my world, there’s no such thing as waste.” Over one billion cups end up in landfill each year because they are not recycled. That’s why 7-Eleven has joined forces with Simply Cups to establish cup recycling in Australia. Save your cups by placing them in a Simply Cups bin at any participating 7-Eleven #cuprescue. Story by Erin Bromhead | news.com.au

      https://www.news.com.au/features/v3/nlmd-2182/creative-ways-corporations-a-doing-something-for-the-planet/#annotations:S7nCNvm4EemF3AN0fEutFg

    1. Walmart is a place of opportunity. Here, you can go as far as your hard work and talent will take you.Our associates are building better lives for their families, and we’re proud to be a part of their success stories. We’re investing in our associates by offering competitive pay, advanced training through Walmart Academies, career development through our Pathways training program and, most of all, a chance to move up. No matter what goals our associates set for themselves, we want to help them grow professionally and personally. To that end, we offer a variety of education benefits.Training and Opportunity Walmart Academies is an immersive training program that is tied to a working supercenter, allowing associates to receive both classroom and sales floor training in advanced retail skills and soft skills like leadership, communications and change management. In 2018 alone, we trained 450,000 associates including frontline supervisors, department managers and assistant managers in our Academies.A new video game called Spark City lets anyone “play” as a department manager. Through the game, associates enrolled in Walmart Academies learn the same techniques and processes that they will use on the sales floor in real life. The game is free to the public on the Apple app store and the Google Play store.In Walmart’s fiscal year 2019 we promoted more than 215,000 people to higher-paying jobs with increased responsibility.More than 75% of our salaried store management teams started as hourly associates.Store managers, on average, earn $175,000 annually and manage and help mentor 300 associates.Full- and part-time associates are eligible for quarterly bonuses based on store performance. In Walmart’s fiscal year 2019, hourly associates earned nearly $800 million in bonuses.We’ve converted nearly 175,000 associates from part-time to full-time in fiscal year 2019.
  12. Sep 2019
    1. systematic domination of women by men

      "systematic domination of women by men" the beside statement is varies according to person to person, that is the right each one but according to my perspective the idea is wrong because after a long period of time each girl will feel some loneliness. This isolation can be avoided if you have some to care you. No women in the could be independent but they can live independently only a certain period after they miss something in their life. Everyone will leave you but the one who love you will stick with your downs and ups. Your parents will pass you but your husband be with you until something has happen. Below you have five important benefits.

    1. The Hispanic ChallengeThe persistent inflow of Hispanic immigrants threatens to divide the United States into two peoples, two cultures, and two languages. Unlike past immigrant groups, Mexicans and other Latinos have not assimilated into mainstream U.S. culture, forming instead their own political and linguistic enclaves --from Los Angeles to Miami --and rejecting the Anglo-Protestant values that built the American dream. The United States ignores this challenge at its peril. By Samuel P. Huntington| October 28, 2009, 8:39 PM

      WHO IS SAMUEL P. HUNTINGTON ? -BORN Apring 18th 1927 making him he died in 2008 he is a New York native went to Yale and then served the military He is a a political scientist

      • also a Presdiential advisor to former presidents Lyndon Jhonson and Jimmy Carter
  13. span2204.commons.gc.cuny.edu span2204.commons.gc.cuny.edu
    1. Thus, even though these numbers turned out to be exaggerated, the authority of their source—the INS—meant that they entered public discourse as a symbol of alarm.29For example, the December 1974 cover of the American Legion Magazinedepicted the United States being overrun by “illegal aliens” (Figure 1.1). Most of the cartoon people in the image are Mexicans storming, en masse, across the U.S.-Mexico border, breaking down a sign that reads “usa border” and another one reading “keep out.” Other immigrants are landing by boats along theEast Coast, flying in and swimming from the Caribbean, parachuting acrossthe Canadian border, and all of them are converging upon, and inundat-ing, the nation’s institutions, most notably welfare, education, housing, jobs, and medical care. Such images were to become more frequent in the nation’s magazines over the next three decades, contributing to an increasingly alarmist d

      I feel that cartoons (in magazines/newspapers/etc) always tend to implicate some type of "joke" because it is illustraited in a way that should just be a slap in the writst just because it is a drawing and it is "funny"because it is a cartoon. But there has been a a lot of cartoons HYSTORICALLY publicly published that no doubt has racism stamped all over it. No difference with this cartoon there is stereotypes of Mexicans with sombreros and almost racing to these facilities. I also think of the illustraitor and what type of person is he and what his/her intensions were to be using effort and tallent on something so RACIST.

  14. Aug 2019
  15. Jun 2019
  16. May 2019
    1. Paduans

      Paduans is a Venetian Italian city that was founded by the Trojan price Antenor in 1185 B.C after the destruction of Troy. Antenor who was the founder of the city was said to be a tradior of the Trojans and he delivered Palladio who was the tailsmans of troy to Odysseus and Diomedes and in exchange he recieved salvation for himself and his family. Today Paduans in known to be one of the most beautiful cities in Veneto.

    2. Florentine

      Florentine represents the political scene of Italy at the time and the physiology that ended up getting Dante exiled. Dante considered the Florentine politics to be mischievous, which is why he put a character that represented this in The Inferno. After being exiled, along with many others, Dante considered the results of the politics to be a sin.

    3. Filippo Argenti

      Filippo is based on a Black Guelph, Charles of Valoi, Dante’s political enemy. Charles of Valoi entered Florence with the other Black Guelphs and destroyed much of the city within a few days. The harsh treatment that Filippo sufferers in The Inferno is payback for an earlier offense that the real life Charles of Valoi had done. In The Inferno Filippo’s violent temper is highlighted in the story as a man who had crossed Dante.

    4. Phlegyas

      Phlegyas is the son of Mars (god of war) who became outraged after the god Apollo raped his daughter. Out of rage, he set fire to the temple of Apollo. Phlegyas is in The Inferno because Virgil uses him to represent the sins of wrathful and sullen. In The Inferno, Phlegyas is responsible for Dante and Virgil across the Styx in his boat.

    5. INFERNO VIII↩⚓✪ The Fifth Circle. Intemperance in Indignation⚓✪ The Wrathful and Sullen. Styx. The City of Dis

      The City of Dis refers to the walls that encompasses all of lower hell where the serious sins are punished. Dis, also known as Pluto, is one of the kings of the underworld. Dis represents Lucifer and the lower circles of his infernal realm. It is in The Inferno because it is where the worst sinners reside and is imperative to Dante’s portrayal of his own version of hell.

  17. Apr 2019
    1. Text-Based SourcesSummary of the Final Report of QTD Working Group II.1Nikhar Gaikwad, Veronica Herreraand Robert Mickey*

      ShareKnowledge #QualitativeUAEM

      Al analizar el contenido del texto "Text-Based Sources" (American Political Science Association Organized Section for Qualitative and Multi-Method Research, Qualitative Transparency Deliberations, Working Group Final Reports, Report II.1); hemos determinado algunas reflexiones que deseamos compartir.

    2. The report describes several types of transparency-enhancing practices relevant to text-based sources. Some of these practices improve transparency regarding the process of generating evidence.Clearly identifying asource's locationhelps other researcherslocate and evaluate evidence, expanding the scope and reach of one's research

      Cabe destacar que las recientes discusiones que han surgido sobre la transparencia de la investigación cualitativa en la Ciencia Política han sido un tema de debate serio, de tal manera que ha sido necesario implementar un código de ética con el objetivo de aumentar y reforzar la transparencia en las fuentes basas en texto.

    3. rk.Drawing on QTD deliberations, existing scholarly work, and our own reflections, we discuss a range of transparency-enhancing practices and technologies, the costs and risks attendant with each, and their potential benefit

      Sabemos que gran parte de la investigación considerada "cualitativa" se basa, en el análisis de documentos (fuentes basadas en texto) y que todo este proceso implica un costo, pero es necesario y garantiza una mejor calidad de la información.

      Por esta razón, sostenemos que la transparencia en la información que empleamos de las fuentes basadas en texto ayuda a otorgar mayor claridad en el proceso de investigación y permite adquirir nuevos conocimientos.

    4. Recent discussions about transparency in political science have become fraught with concernsover replicability or even scholarly misconduct. The report of the QTD Working Group on Text-Based Sources emphasizesinstead that the ultimate goal of augmenting transparency is to increase our ability to evaluate evidentiary claims, build on prior research, and produce better knowledge.

      Consideramos que de suma importancia implementar la transparencia en la metodología de selección de las fuentes basadas en texto que utilizamos para compartir información pública.

      Para ello, es necesario hacer un proceso analítico de deliberación de las fuentes basadas en texto; esto consiste en evaluar si los datos que se compartirán abiertamente son "verídicos".

    1. the manuscripts that were discovered nine years ago, now in the University of Arkansas library with many of her other papers, are mostly complete and easily performed.

      I do recall this happening way more than it should. Not only just A.A but many other colored people. Thousands of art just now being discovered. As a woman of afo-latina descent it makes me proud to know more and more blacks of all ethnicities are becoming prominent in art today.

  18. Mar 2019
    1. In this way, anthropologists often attemptto understand and appreciate culture from the point of view of the people within it.

      This statement reminds me of when I took an anthropology class here at Lander and our professor showed us a documentary about Julia Roberts living with a Mongolian nomad family for days to learn about and live their culture. The link I have attached is just one part of the documentary. Here she is learning about the Mongolian's relationship with wild horses.

    1. This modulefocuses on biases against social groups,which social psychologists sort intoemotional prejudices, mental stereotypes,and behavioral discrimination. Thesethree aspects of bias are related, but theyeach can occur separately from the others(Dovidio & Gaertner, 2010; Fiske, 1998). Forexample, sometimes people have anegative, emotional reaction to a socialgroup (prejudice) without knowing even themost superficial reasons to dislike them(stereotypes).

      The article talks about how prejudice, stereotypes, and discrimination has a correlation, but can happen separately. I do believe that this is true. You can be prejudice, stereotypical and discriminate towards others and not be aware. You see this happen a lot in this society. This are the people that see no wrong in there behavior and thinks society is suppose to keep accepting there behavior. Times have change from the 70's to now.

    1. gender stereotypes, or thebeliefs and expectations people holdabout the typical characteristics, preferences,and behaviors of men and women. Aperson’s gender identity refers to theirpsychological sense of being male orfemale.

      I think in today's society a lot of people struggle with gender stereotypes and their identity. Society is set up to believe that the man is masculine and the women is feminine, and that if those traits are switched, then it's wrong. It's hard teaching a child about gender stereotypes because you don't want your child to feel as though he or she can not do certain things, but it happens which "may or may not" cause a crisis with their gender identity. You want the child to explore their options but in this case a lot of parents may not agree because they don't want to cause confusion. According to the article gender stereotypes, or the beliefs and expectations people hold about the typical characteristics, preferences,and behaviors of men and women. A person’s gender identity refers to their psychological sense of being male or female.

  19. Feb 2019
  20. Jan 2019
  21. sso.davidson.edu sso.davidson.edu
    1. "What is regarded as important and interesting is what is likely to be recognised by others as important and interesting, and thus to make the man who produces it appear more important and interesting in the eye of others."

      There are many different reasons scientists research different subject matters. These intentions are not always known to the public, but the public has a sense of hope that these intentions are in the interest of the people and the research is done to better those who will be affected. The research to find a cure to cancer is a prime example where the people hope this research is done to better the people. The public hopes that scientists will find a cure to save their loved ones. However, this quote bursts this bubble of hope, in a sense. It takes away the innocence of these good intentions and creates doubt in the minds of the public. This quote makes the people wonder if research is being conducted to further the professional reputation of the scientists by being the first one to discover a knew piece of information and create history. People often default to thinking others have the best intentions in mind, but this quote brings a sense of darkness about that innocence. Is research really conducted to benefit the public, or is it done so a scientist can become a piece of history?

  22. Dec 2018
    1. Manténte al tanto de tus ofertas con un sistema especializado de gestión y seguimiento de leads. Programa y registra tus intercambios, incluyendo llamadas, correos electrónicos y reuniones con recordatorios sincronizados automáticamente con tu calendario.

      Manténte al día con tus leads con un sistema de gestión y seguimiento de leads. Programa y registra tus intercambios, incluyendo llamadas, correos electrónicos y reuniones con recordatorios sincronizados automáticamente con tu calendario.

    1. Take the guesswork out and have real-time visual prediction of your growth. With estimated closing dates and probabilities, you can focus on what's likely to close and work on finding new deals for a stronger sales pipeline.

      Elimina las conjeturas y ten una predicción visual en tiempo real de tu crecimiento. Con las fechas de cierre estimadas y las probabilidades, puedes concentrarte en lo que es probable que se cierre y trabajar en la búsqueda de nuevos leads para un flujo de ventas más sólido.

  23. Oct 2018
  24. Sep 2018
    1. City officials can actually help if they go out into the streets and ask real people what actually is going on. Something on blogs and on polls arent true, they dont always speak the truth. If they were to go out to communities and build relationships with people, they would have a clearer understanding of what is going on.

    2. I dont believe some of this, blacks never had a voice during . That time if they were to speak up during that time they would often get punished. Blacks had no say in there freedom, slavery wasn't abolished to help slaves, Abraham Lincoln didn't do it out of the kindness out of his heart.

  25. Aug 2018
    1. Los datos dasométricos de 25 cuadrantes de 20m x 30m fueron levantados en las plantaciones de los ejidos mencionados anteriormente. La edad de las plantaciones varió desde 6 hasta 20 años para tener una crono secuencia definida y poder modelar en tiempo el crecimiento en volumen, área basal y densidad a nivel del rodal.

      Podría considerar la edad de la plantación a estudiar y realizar dicha cronosecuencia.

  26. May 2018
    1. Ironically, DWYL reinforces exploitation even within the so-called lovable professions where off-the-clock, underpaid, or unpaid labor is the new norm:

      Doing what you love, isolates and degrades other workforces and elevates others and more so, the ones of higher economic class. One should be paid fair dues as per their work and have good working conditions. She wants people to realize that they deserve goods jobs and they should never settle for less in the name of doing what they love.

  27. Apr 2018
  28. Feb 2018
  29. Nov 2017
    1. The National Palace Museum, Taipei, is recognized globally as the leading research institution for Chinese art, and the cultural objects housed in it have lent legitimacy to the Taipei government’s claims that it is the true steward of Chinese culture.

      Top quality/ leading museums allow ethnic groups to understand their traditional cultures which this is one of the indispensable factors in comprehensive education, therefore, I think a well- equipped museum is needed.

    1. Whistle-blowers and dissidents might need to use a different platform.)

      The way that he casually mentions whistle blowers and dissidents is troubling to say the least. Also, will dig up studies, but removing anonymity hasn't really shown to decrease trolling or other bad behavior. Also, "privacy" anyone?

      http://theweek.com/articles/632929/problem-internet-trolls-isnt-anonymity

  30. Sep 2017
  31. Aug 2017
    1. wholly destitute of all education but what he received in common with other domesticated animals, enjoying no advantages that could lead him to suppose himself superior to the beasts, his fellow servants.

      This is an accurate description of chattel slavery. Slaves were dehumanized to justify treating them inhumanely. They could be bought, sold, traded, and inherited just as livestock.

    1. The Web We Need to Give Students

      The title itself is expressive towards the fact that the educational system has been trying to come up with many ways to help students manage their understanding of the web in general.

      some 170 bills proposed so far ...

      Its no surprise tha tthe schools can share data with companies and researchers for their own benefits. Some of these actions are violations of privacy laws.

      arguments that restrictions on data might hinder research or the development of learning analytics or data-driven educational software.

      Unbelievable! The fact that there is actually a problem with the fact that students or anyone wants their privacy, but abusing companies and businesses can't handle invading others privacies is shocking. It seems to be a threat to have some privacy.

      Is it crazy that this reminds me of how the government wants to control the human minds?

      All the proof is there with telephone records, where the NSA breaches computers and cellphones of the public in order to see who they communicate with.

      Countries like Ethiopia; the government controls what the people view on their TV screens. They have complete control of the internet and everything is vetted. Privacy laws has passed! Regardless, no one is safe. For example: Hackers have had access to celebrity iCloud accounts, and exposed everything.

      The Domain of One’s Own initiative

      Does it really protect our identities?

      Tumblr?

      Virginia Woolf in 1929 famously demanded in A Room of One’s Own — the necessity of a personal place to write.

      Great analogy! Comparing how sometimes people need to be in a room all on their own in order to clear their minds and focus on their thoughts on paper to also how they express themselves in the web is a good analogy.

      ... the Domains initiative provides students and faculty with their own Web domain.

      So, the schools are promising complete privacy?

      ...the domain and all its content are the student’s to take with them.

      Sounds good!

      Cyberinfrastructure

      To be able to be oneself is great. Most people feel as if their best selves are expressed online rather than real life face-to-face interactions.

      Tumblr is a great example. Each page is unique to ones own self. That is what Tumblr sells, your own domain.

      Digital Portfolio

      Everyone is different. Sounds exciting to see what my domain would look like.

      High school...

      Kids under 13 already have iPhones, iPads, tablets and laptops. They are very aware to the technology world at a very young age. This domain would most likely help them control what they showcase online, before they grow older. Leaving a trail of good data would benefit them in the future.

      Digital citizenship:

      It teaches students and instructors how to use technology the right way.

      What is appropriate, and what is not appropriate?

      Seldom incluse students' input...

      Students already developed rich social lives.

      Google doc= easy access to share ones work.

      Leaving data trails behind.

      Understanding options on changes made?

      Being educated on what your privacy options are on the internet is a good way of protecting your work.

      Student own their own domain- learning portfolio can travel with them.

      If the students started using this new domain earlier in their lives, there should be less problems in schools coming up with positive research when it comes to the growth of the students on their data usages.

      School district IT is not the right steward for student work: the student is.

      So to my understanding, if the student is in the school, one has to remember to move around the files saved in the domain. The school is not responsible for any data lost, because the student is responsible for all their work.

      Much better position to control their work...

      If all of this is true and valid, it should not be a big deal then for the student to post what ever they want on their domain. No matter how extreme, and excessive it seems, if that is how they view themselves, their domain would be as unique as their personalities.

  32. Jul 2017
  33. May 2017
    1. Ray Lewis

      Who is Ray Lewis? He is a former Nation Football League middle line backer that played and help for the Ravens into a 2 time super bowl team. He was a former Super Bowl MVP, a 2 time Defensive Player Of Year, and a 13 time Pro Bowler. He stayed with the Ravens for 15 years. due to injury and age, he retired from the league after the 2012-2013 season

  34. Apr 2017
    1. Driving this shift is Taiwan’s underlying geopolitical strategy to decrease its dependence on Mainland China and increase its ties with the rest of Asia.

      Taiwan's goals on becoming a pan-Asian identity through decreasing its dependence on Mainland China may not have been the best or well thought out plan. This is because it can cause a lot of negative outcomes. One reason may be that the US does not recognise Taiwan's Independence, ending all diplomatic relations with them but not with China. This is a prime example of how even though Taiwan is looking for change and trying to become pan-Asian, the rest of the world may not share their ideology.

    2. The fraught United States presidential election cycle of 2016 has revealed a country divided along geographical and ideological lines. It has also bolstered a narrative of haves and have-nots, pitting the so-called coastal elites against “heartland” America.

      The 2016 US presidential election caused a huge divide among the country both geographical and ideological. There was a divide against the coastal states and "heartland" America. Where economically large coastal states such as California had been won over by Hillary, from the democrats. This was due to sharing similar values and ideologies. On the other land the majority of heartland states had voted for Trump, the republican party.This was mainly because people in the heartland states were still affected by the financial crisis of 2008. There was economic revival for the coastal states, heartland America was still affected. Thus this caused geographical and ideological division among the American people.

    3. Taiwanese identity grew more distinct from Mainland China

      Taiwan and its attempts to legitimise itself as a sovereign state seperate from china -

      "Trump infuriated China’s leadership when he spoke to Tsai on the phone and later made separate comments questioning the longstanding “one China” policy, under which the US notionally accepts Beijing’s view that Taiwan is part of China. The US does not officially host Taiwanese leaders. Taiwan has been self-governing and de facto independent since the end of China’s civil war. Beijing regards it as a renegade province".

  35. Mar 2017
  36. Dec 2016
  37. Nov 2016
  38. Oct 2016
    1. The topic was strong and to the point, and had plenty of background information. However, there were some contradictions in the essay, like when he said every president so far has discussed benefits of NASA and supports it, but then states that Obama cut some of its funding. Obama actually did this to focus on other current issues, but he now fully supports the manned mission to Mars. https://capitalresearch.org/2016/07/nasa/

  39. Sep 2016
    1. I look at my sex, my troubling sex, and wonder · how it can be redeemed, how I can save it from the knife. The jour-ney to the grave is already begun, the journey to corruption is, al-ways, already, half over. Yet, the key to my salvation, which cannot save my body, is hidden in my flesh.

      From this quote we can see the outcome of all the guilt and shame David felt for having homosexual relations. David believes that he is going to die due to the nonredeemable actions he's done. His journey to death has already begun due to this as well. I think that the societal judgments of homosexuality caused David to have negative thoughts about his life and body in the end. When he was with Hella he could push it aside but now that he is alone he's faced with the harshness of his reality. That how he's been living his life is 'wrong'.

    2. The morning weighs on my shoulders with the dreadful weight of hope an4 I take the blue envelope which Jacques has sent me and tear it sl6wly into many pieces, watching them . .. . I dance in the wind, watchiμg the wind carry them away. Yet, as I turn and begin walking tovyard the waiting people, the wind blows some of them back on me. ]

      Reading this last paragraph, it seems that not even David knows what will happen next in his life. The idea of having hope that something positive will happen in his life now. Or Giovanni won't be executed is weighing him down because even he knows that isn't realistic. Since the ending is so ambiguous I personally took David tearing the envelope Jacques sent him slowly as him trying to start over, but when he threw it in the wind as he was walking away the wind blows it back to him. Making me believe that even though he wants to start over and forget what has happened he won't be able to move forward because something in his past will keep bringing him down. I also believe that the reason why Baldwin made the ending so ambiguous is because during that time maybe he didn’t know what to do next or how to move on. It was said that Giovanni’s room was based off of actual events that happened to Baldwin before he starting writing this book. Baldwin was in a love affair with a man named Lucien Happersberger who ended up marrying a women and that’s why the book is dedicated to Lucien.

      I tagged an article where Baldwin talks about Giovanni's Room and what it means to him as well as a very short clip of an interview with Baldwin.

    1. taking it away from those who have a different complexion or slightly flatter noses than ourselves,

      This is the first of many racist comments that take place throughout the book. The sheer volume of comments made in regards to race in the entire book is enough proof to answer the question of, is the book racist or about racism? I argue that the book is not racist, but instead that it is realist. I also argue that the public finds this book so controversial because Conrad is giving us a fairly accurate portrayal of how cruel humans can be. I believe that the book is racist because he also writes in regards to the wrongs of colonialism. His statements that some view as racist are merely observations of an unbalanced social hierarchy. You can tell this also because of the fact that he remains very neutral in all controversial comments.

  40. Aug 2016
    1. We can now begin to see that the reason for why Du Bois was marginalized, and why his influence has been obscured, is not just his skin color. It is also that he was intellectual insurrectionary – intellectually heterodox – challenging the hegemony of scientific racism upon which white sociology had been mounted at the time.

      Du Bois probably didn't gain much recognition on the work he did for Sociology because of his involvement in the Civil Rights movement. Go had said that he had dangerous ideas, which, at the time, he did. He was very involved in different groups that protested against the discrimination that was happening at the time. This is what he was more known for. Higher officials probably didn't want give more attention to Du Bois than he already had gained, so they didn't credit him for his work in Sociology.