Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Android Contacts – Remove Websites

Posted on March 2, 2014October 26, 2015 By David Kittell
DELETE FROM data
WHERE mimetype_id IN (
        SELECT _id
        FROM mimetypes
        WHERE mimetype LIKE "%web%"
        )
    AND
        data1 LIKE '%facebook.com%';
Originally Posted on March 2, 2014
Last Updated on October 26, 2015
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Android SQLite Code SQL SQLite

Post navigation

Previous post
Next post

Related Posts

PowerShell – Check DNS For Skype For Business

Posted on May 21, 2018

## CallTower PowerShell DNS Checker, This script checks all that you have all your DNS entries in place and displays the final route for DNS lookups. ## ## Usage .\Check-SRVRecords.ps1 -domain calltower.com ## ## Original Script Obtained From: https://www.uc.solutions/Skype_for_Business/Skype4B_Set_Up/How_to_verify_or_set_DNS_records_for_Skype_for_Business ## param($domain = (Get-WmiObject win32_computersystem).Domain) $cnameresult = Resolve-DnsName sip.$domain -Server 8.8.8.8…

Read More

Fedora – Install/Reinstall Fedora Desktop

Posted on July 7, 2016

If you start with a server ISO or need to reinstalled desktop because it crashed try this sudo yum groupinstall "Fedora Workstation" sudo systemctl set-default graphical.target sudo shutdown -r now All information on this site is shared with the intention to help. Before any source code or program is ran…

Read More

PowerShell – Download/Install/Configure Nexus

Posted on March 7, 2016March 8, 2016

This script is best followed by PowerShell – Java JDK/JRE Unattended Install as you need Java JDK installed. # Nexus Download Link: http://www.sonatype.org/downloads/nexus-latest-bundle.zip clear # URL Parameter $WebURL = "http://www.sonatype.org/downloads/nexus-latest-bundle.zip" # Directory Parameter $FileDirectory = "$($env:USERPROFILE)$("\downloads\")" #Write-Output $FileDirectory # If directory doesn’t exist create the directory if((Test-Path $FileDirectory) -eq 0)…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes