Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. Other Discussions
  3. The Back Room
  4. Arpaio kick'n ass and taking names

Arpaio kick'n ass and taking names

Scheduled Pinned Locked Moved The Back Room
comquestion
19 Posts 9 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K kmg365

    feds start paying attention, go Joe go.[^]

    I Offline
    I Offline
    Ilion
    wrote on last edited by
    #10

    From the article[^]:

    The Department of Justice (DOJ) has launched an investigation of the Maricopa County Sheriff's Office in Arizona following requests by congressional Democrats and allegations by liberal activists that the department has violated the civil rights of illegal aliens. ...

    Non-citizens of the US have no US civil rights. And illegal aliens -- do-it-yourself invaders -- have no moral claims upon our sympathies.

    1 Reply Last reply
    0
    • K kmg365

      feds start paying attention, go Joe go.[^]

      F Offline
      F Offline
      fred_
      wrote on last edited by
      #11

      is that the sheriff that mad made the inmates wear pink jumpsuits and grow their own food?

      C K 2 Replies Last reply
      0
      • F fred_

        is that the sheriff that mad made the inmates wear pink jumpsuits and grow their own food?

        C Offline
        C Offline
        Chris Austin
        wrote on last edited by
        #12

        He also has them live in Tents and work on road clean up crews. No easy time on his watch.

        Sovereign ingredient for a happy marriage: Pay cash or do without. Interest charges not only eat up a household budget; awareness of debt eats up domestic felicity. --Lazarus Long Avoid the crowd. Do your own thinking independently. Be the chess player, not the chess piece. --?

        K 1 Reply Last reply
        0
        • O Oakman

          When I published my article

          Jon Smith & Wesson: The original point and click interface

          S Offline
          S Offline
          Stan Shannon
          wrote on last edited by
          #13

          You and I must be working on very similar projects.

          Chaining ourselves to the moral high ground does not make us good guys. Aside from making us easy targets, it merely makes us idiotic prisoners of our own self loathing.

          O 1 Reply Last reply
          0
          • S Stan Shannon

            You and I must be working on very similar projects.

            Chaining ourselves to the moral high ground does not make us good guys. Aside from making us easy targets, it merely makes us idiotic prisoners of our own self loathing.

            O Offline
            O Offline
            Oakman
            wrote on last edited by
            #14

            Stan Shannon wrote:

            You and I must be working on very similar projects

            Are you hooking into the page request manager, too? I'm just beginning to understand how useful an object it is.

            Jon Smith & Wesson: The original point and click interface

            S 1 Reply Last reply
            0
            • O Oakman

              Stan Shannon wrote:

              You and I must be working on very similar projects

              Are you hooking into the page request manager, too? I'm just beginning to understand how useful an object it is.

              Jon Smith & Wesson: The original point and click interface

              S Offline
              S Offline
              Stan Shannon
              wrote on last edited by
              #15

              Oakman wrote:

              Are you hooking into the page request manager, too? I'm just beginning to understand how useful an object it is.

              I actually haven't found a use for it yet. In fact, I don't use any of the microsoft ajax controls, including the updatepanel. My client side javascript is intended to be used in an MVC pattern. There is no application specific logic on the client and I'm just using ajax to transfer data between the controller and the view which is pretty much pure HTML. I have a custom control that sets up the scriptmanager and builds the view from an XML definition file. The IFrame has been an important part of the design but I have it working now without the need for an IFrame.

              Chaining ourselves to the moral high ground does not make us good guys. Aside from making us easy targets, it merely makes us idiotic prisoners of our own self loathing.

              O 1 Reply Last reply
              0
              • F fred_

                is that the sheriff that mad made the inmates wear pink jumpsuits and grow their own food?

                K Offline
                K Offline
                kmg365
                wrote on last edited by
                #16

                Yes.

                1 Reply Last reply
                0
                • C Chris Austin

                  He also has them live in Tents and work on road clean up crews. No easy time on his watch.

                  Sovereign ingredient for a happy marriage: Pay cash or do without. Interest charges not only eat up a household budget; awareness of debt eats up domestic felicity. --Lazarus Long Avoid the crowd. Do your own thinking independently. Be the chess player, not the chess piece. --?

                  K Offline
                  K Offline
                  kmg365
                  wrote on last edited by
                  #17

                  I hope he runs for a higher office.

                  1 Reply Last reply
                  0
                  • S Stan Shannon

                    Oakman wrote:

                    Are you hooking into the page request manager, too? I'm just beginning to understand how useful an object it is.

                    I actually haven't found a use for it yet. In fact, I don't use any of the microsoft ajax controls, including the updatepanel. My client side javascript is intended to be used in an MVC pattern. There is no application specific logic on the client and I'm just using ajax to transfer data between the controller and the view which is pretty much pure HTML. I have a custom control that sets up the scriptmanager and builds the view from an XML definition file. The IFrame has been an important part of the design but I have it working now without the need for an IFrame.

                    Chaining ourselves to the moral high ground does not make us good guys. Aside from making us easy targets, it merely makes us idiotic prisoners of our own self loathing.

                    O Offline
                    O Offline
                    Oakman
                    wrote on last edited by
                    #18

                    Stan Shannon wrote:

                    I actually haven't found a use for it yet

                    Here's a little piece of code I put in today: Public Shared Sub DisplayAJAXMessage(ByVal page As Control, ByVal msg As String) Dim myScript As String = String.Format("alert('{0:}')", msg) ScriptManager.RegisterStartupScript(page, page.GetType(), "MyScript", myScript, True) End Sub and later, to tell the player he can't do that: DisplayAJAXMessage(Me, "Not enough space or credits") Bingo, immediate alertbox that happens on the same postback that the player used to try something he couldn't do. Later I'll replace the alert with a CSS'd messagebox that'll act like a Toast. It's not rocket science, but it's an example of what I am beginning to really like about the manager, that ability to hook into the same round trip that occurred to create a situation. (Yes, it's VB, if you need it translated, I'll be glad to do so. ;) )

                    Jon Smith & Wesson: The original point and click interface

                    1 Reply Last reply
                    0
                    • C Chris Austin

                      Synaptrik wrote:

                      At least that's the report I heard.

                      What report is this? While I live in Dallas, I still think of Phoenix as home. So, I'd love to hear an honest non political gripe.

                      Synaptrik wrote:

                      The complaints include massive racial profiling that it becomes a nuisance to honest Mexican-American citizens.

                      All of the Honest People I know (my entire family and extended family and every friend I grew up with in a predominately mexican-american part of west Phoenix ) in Maricopa County like the guy. The only people I have seen complain about him are so-called immigrant's rights supporters. These are the same people who refuse to call the illegals 'illegal' but prefer the term undocumented workers or people without 'papers'. They have an agenda. Edit:

                      Synaptrik wrote:

                      The complaints include massive racial profiling

                      How else can we deal with the problem of illegal aliens who, at least in Maricopa County, are by a great majority from South and Central America? I agree with going after people who employ them first and foremost. But, can you offer an effective alternative to racial profiling?

                      Sovereign ingredient for a happy marriage: Pay cash or do without. Interest charges not only eat up a household budget; awareness of debt eats up domestic felicity. --Lazarus Long Avoid the crowd. Do your own thinking independently. Be the chess player, not the chess piece. --?

                      S Offline
                      S Offline
                      Synaptrik
                      wrote on last edited by
                      #19

                      Well, one novel idea is supporting the 14th amendment which provides for both equal protection and equal prosecution under the law. So, profiling as a practice by law enforcement when rounding up anyone who is Hispanic and forcing them to prove their legitimacy even for legal citizens who happen to be Mexican, which, Arizona has been Mexican for hundreds of years, is at best, unconstitutional. If we support the idea that we are a nation of laws, then we can't pick and choose which laws we wish to obey. As soon as law enforcement is allowed to ignore the laws they find inconvenient, then we are no longer a nation of laws.

                      This statement is false

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups