Menu
  • HOME
  • TAGS

Batch convert powerpoint slideshows to kiosk

batch-file,cmd,powerpoint,bulk,powerpoint-2010

I suspect you can automate this. In outline, using VBA, you'd: Open each presentation, then With ActivePresentation.SlideShowSettings .ShowType = ppShowTypeKiosk End With With ActivePresentation .Save .Close End With If you're automating PPT externally, ppShowTypeKiosk = 3...

How to handle refused mail?

email,newsletter,bulk

Basically you seem to be doing everything right. BATV is one option for etending your bounce handling, another is having the return address be a mailbox created specially for collecting the bounces.

elastic search _bulk request with “head” plugin

search,bulk,elasticsearch-plugin

You are missing the quotes before name. { "index": 1, "name" : "my_value" }...

import a large amount of json files to couchdb

php,json,couchdb,bulk

Make sure you are posting to the _bulk_docs endpoint (e.g. http://user:[email protected]:5984/db/_bulk_docs). See here for more info....

How to: Implement a BatchMessageListenerContainer for bulk consuming a JMS queue

performance,jms,spring-integration,bulk,consuming

Well - this is a simple and compact solution that is entirely based on a single class derived from DefaultMessageListenerContainer. I have only tested with message-driven-channel-adapter and a ChainedTransactionManager though - since this is sort of the basic scenario when needing to do stuff like this. This is the code:...

Jenkins Get the job link in groovy script

jenkins,configuration,environment-variables,bulk

import hudson.model.* jenkins = Hudson.instance for (item in jenkins.items){ println jenkins.getRootUrl()+item.getUrl() } Tried this in script console. Lists all jobs absolute URLs. You just need to add the logic to get your jobs list...

Bulk Update wordpress core & its plugins locally

wordpress,workflow,updates,core,bulk

I am using InfiniteWP to manage updates remotely. You set "the server" up on your own webhost and install plugins in the sites you want to manage. From then on you can log in on your webhost, add sites which have the plugin installed and can then choose which updates...

use ubuntu **rename** command for folders

ubuntu,rename,bulk

You can do this: rename 's/test\ (.*)/$1/' * ...

Bulk delete via insert - full undo space

sql,oracle,undo,bulk

The best option is to avoid the UNDO generation using a DDL statement: CREATE TABLE PERSON_NEW NOLOGGING AS SELECT * FROM Person_old where p.name is not null The NOLOGGING is to avoid the REDO generation and perform the creation faster. However, if you must perform an INSERT, consider a direct-path...

ElasticSearch, use of Wildcard on index names while using bulk api

elasticsearch,bulk

Unfortunately that's not going to work. If you read the documentation closely: Single index APIs such as the Document APIs and the single-index alias APIs do not support multiple indices. and then follow the links to the list of Document API's: Document APIs This section describes the following CRUD APIs:...

Java MySQL bulk insert vs normal

java,mysql,insert,bulk

You use addBatch and executeBatch, which is good, but you also need to set autocommit on your connection to false in order to achieve faster execution times. Something along the lines: Connection conn = mysqlconn.getConnection(); conn.setAutoCommit(false); // here PreparedStatement ps = null; String query = "insert into table (column) values...

Bash script to transform links and download images

bash,shell,download,wget,bulk

This is far from a perfect solution, but you could always use your browser to list all the files you need to download and then use wget to download them : Run this javascript snippet in your browser : var imgs = document.getElementsByClassName("grid_item_thumb"); var html = ""; for(var i=0; i<imgs.length;...

Magento Magmi Import Product not show up

magento,csv,bulk,magmi

Some checks you can do to ensure the product appears in the frontend: Make sure you are reindexing all of the index tables after import. Ensure that the product Status attribute is set to Enabled Make sure the product has a quantity greater than 0. Make sure the availablity is...

Override django's model delete method for bulk deletion

django,model,delete,bulk,imagefield

It does: The delete() method does a bulk delete and does not call any delete() methods on your models. It does, however, emit the pre_delete and post_delete signals for all deleted objects (including cascaded deletions). For that to work, you can override delete method on QuerySet, and then apply that...

Run the application multiple times with different arguments in one click

c,batch-file,cygwin,bulk

Shell script for Cygwin Put the following into a file, say bulkssltest.sh: #!/bin/sh for opt in -3 "" -1 -2; do # Intentionally unquoted $opt here, so that the empty opt disappears # and is not expanded into the empty string (that ssltest doesn't expect) # You might want to...

Oracle: Bulk update of records from c# [closed]

c#,oracle,updates,bulk

use "array binding" with a simply update statement. http://www.oracle.com/technetwork/issue-archive/2009/09-sep/o59odpnet-085168.html...

Create multiple active records with variables

ruby-on-rails,variables,activerecord,bulkinsert,bulk

You can do this in your controller. First do what steve klein says, then you can do the following. For example if you want to use a text field to enter the new user names you can do something like in your form: <%= f.label :user_names %> <%= f.text_field :user_names_string,...

Shell Script to move photos into folders with date YYYYMMDD

shell,date,move,folders,bulk

First of all, Thanks to every comment of you!!! REGEX is toooo difficult for me. Thanks alyway. After a lot of research today I fit together a lot of puzzle parts. What I got is this: The only thing is that if there is already a folder the respective files...

use rename command on first 5 characters of a file

linux,rename,bulk

The perl regex syntax for selecting the first 13 characters would be this: s/^.{13}/something/' Similarly, if you wanted to match the last 13 characters you could use this: s/.{13}$/something/' The ^ is an anchor to the beginning of the string and $ is an anchor for the end of the...

Notepad++ bulk search and replace string with another string within the same line

regex,replace,notepad++,bulk

You can try replacing ((STR_\S+)\s*=\s*"([^"]|\\")*";) with \1 publicVariable "\2"; \1 will represent part matched by entire regex and \2 represents part matched by (STR_\S+)....

Bulk Upload to Vimeo with tagging, description, thumbnail

api,video,upload,vimeo,bulk

As you mentioned, everything except for specifying the thumbnail is currently available. In the near future (no time frame) Vimeo will support this through the new API (https://developer.vimeo.com/api). I'm not aware of any third party code that already offers this functionality....