Showing posts with label active. Show all posts
Showing posts with label active. Show all posts

Wednesday, January 3, 2018

How to Get Unlimited Active Twitter Followers Quickly

How to Get Unlimited Active Twitter Followers Quickly


 

Today i am going to share the ultimate way to boost your twitter followers. It is the safe method to imply. Tweepi is a managing app of twitter, it helps us to get more followers instantly

I noticed that twitter is not a bad place to share your thoughts around the world and later I realized that twitter is the only way through which you can get connected with your beloved celebrity, Moreover you can send direct messages to them.

But one thing is assured if you are practicing twitter you will face lots of problem regarding followers, twitter runs in an uncomplicated logic, the higher the followers and lower the following the much greater personality you are. There are many hacks out there on the internet that captioned�How to get unlimited followers� etc but guess what those cheap tricks are completely a waste.

So today I am going to share you the easiest trick which you can implement today to get real targetted twitter followers you don�t need to install any app to get this action done. This is a slow method so if you are expecting you will get the flood of followers over night then this one is not for you.

How to Get Unlimited Active Twitter Followers Quickly :

This is an easy trick which if implement daily can do wonders to your twitter followers. The rule is simple You have to follow others and they will follow you back. And I am sharing you an awesome website which will help you to perform the mentioned action.

Tweepi is a managing app for twitter it helps you to follow relevant users, clean up the inactivities, follow other followers and unfollow those who doesn�t follow you back and many more. Today we will be using Tweepi to manage our twitter profiles so let�s know how to increase followers.
 
1. Go to tweepi.com and click on signup if you are using this for the first time.

Screenshot_2 
2. If you already have a twitter account then simply click on Login via twitter.

Screenshot_3 
3. Now you will be redirected towards the Dashboard wait for few seconds.

Screenshot_4 
4. Now you can see your Tweepi dashboard you can choose the free package, free package is somehow limited, but it�s enough to take huge advantage from it. Now you can see lots of option there which includes a number of twitter followers, not following you back etc. You have to choose the option of Follow Followers from there.

Screenshot_5 
5. After you selected the option of Follow followers Tweepi will ask you to insert the username of twitter user whose followers you want to follow. for example, I am following the followers of @rbrosemer and hit the search button

Screenshot_6 
6. Now you can see the follower list of the searched people and you can follow each and everyone over there by just hitting the follow button. You can follow many users and in return they will follow you back.

Screenshot_7 
Bonus:

1. There is an extension named Tweepi Bulk default action in Google chrome store which will help you to follow each and every user in Tweepi with just a click. It will help you a lot. You can add this to your chrome from here

Screenshot_8 - Copy 
2. You can unfollow those who are not following you back in Tweepi only by this way your followers and the following will be maintained.

These are the easy way out there by which you can get numbers of active and real twitter followers, It is a safe method to imply it will take some time to grow your follower if you had chosen the free package like me. But it is sure to give you satisfactory results.


visit link download
Read more »

Tuesday, December 26, 2017

iLogic Suppress Components in all but the Active Level of Detail

iLogic Suppress Components in all but the Active Level of Detail


Issue:
Your assembly has several Level of Detail Representations set up, which works well. The problem is that when you add a new component to the assembly, you have to go to each Level of Detail and suppress the component in order to prevent it from showing up in those existing Level of Detail Representations.



Solution:
Here is an iLogic rule that will suppress any selected components in all of the other LODs, with the exception of the active LOD.

This allows you to place the component in the assembly with the LOD you want to add the component to set active, then select the component (or components) and run this iLogic rule to remove the component(s) from the other LODs.

This iLogic rule also doesnt suppress the selected components in the standard LODs, such as the "Master" LOD, the "All Content Center Suppressed" LOD, etc.

Note too that it saves the file each time one of the other LODs is modified in order to make the changes "stick", so if you have a large assembly with many LODs it might take a bit for this rule to run.






Dim oDoc As AssemblyDocument
oDoc = ThisApplication.ActiveDocument

Find all selected components and add them to an ObjectCollection.
Dim oSelected As ObjectCollection
oSelected = ThisApplication.TransientObjects. _
CreateObjectCollection (oDoc.SelectSet)

define LOD rep
Dim oLODRep As LevelOfDetailRepresentation

define rep manager
Rep_Manager =ThisApplication.ActiveDocument. _
ComponentDefinition.RepresentationsManager

define an arraylist to hold the list of  LOD rep names
Dim NameList As New ArrayList()

look at the LOD reps in the assembly
For Each oLODRep in Rep_Manager.LevelOfDetailRepresentations
add the LOD names to the array list
NameList.add(oLODRep.Name)
Next

Dim myLOD as LevelOfDetailRepresentation
link download
Read more »

Tuesday, December 19, 2017

iLogic Working with the Active Sketch

iLogic Working with the Active Sketch



Issue:
Youre working with sketches in some iLogic code and want to be able to find the active sketch name, or active sketch number. 



Solution:
Here are a couple of quick rules that will do this. And also as a bonus there is a quick rule to delete all sketches in the part.

Rule1: Find the active sketch name



Dim oSketch As PlanarSketch
If Typeof ThisApplication.ActiveEditObject Is Sketch Then
oSketch = ThisApplication.ActiveEditObject
MessageBox.Show(oSketch.Name & " is the active Sketch", "iLogic")
Else
MessageBox.Show("Active Edit Object is not a Sketch", "iLogic")
End If




Rule2: Find the active sketch number


Blog Archive