The source and build for a set of Grails HOWTO documents
A groovy command line script to upload wars and create application versions in Amazon Beanstalk
lucastex/aws-groovy-deployer 6
Groovy script to build and deploy on AWS
Plugin Grails para uso de funcionalidades dos Correios BR
simple aws tools, or your money back.
Documentation Project For The Grails Web Application Framework
Plugin that allows users to "feature" an item for a specific amount of time
O Caelum Stella visa suprir as necessidades do dia a dia do desenvolvedor brasileiro
Aplicação Grails para controle de capitulo DeMolay
Nagios Plugim for CloudWatch
startedibraheemdev/modern-unix
started time in 3 hours
startedelgohr/Publish-Docker-Github-Action
started time in 3 days
push eventinstagram4j/instagram4j
commit sha 664a456f49310be46ccb366745aca136ffe0e2b1
Create UsersBlockedListRequest.java
commit sha 059f64f63be193eb9d2e9d37219ea8b23c57a13e
Create UsersBlockedListResponse.java
commit sha 94ecd67381a10f9152c94da4fa73315540bc726f
Merge pull request #596 from unldenis/master Get list of blocked user
push time in 3 days
push eventinstagram4j/instagram4j
commit sha c658aac912b096df0bbe4fd2868829a2c443d0dc
Add common interface to ReelImageMedia and TimelineImageMedia
commit sha 33c63643f0e181ad0f565a2fe6468dc8ab209d63
Add common interface to VideoVersionsMeta and ImageVersionsMeta
commit sha 60492a9f87e7ff386594c59a409c3d9210c0ee00
Fix caraousel -> carousel typo
commit sha 7209c9f66fb43782b46686e11b07be425111db5b
Rename Rectangle to Meta
commit sha 880626a52a6a65307f33eace1c1ffb4332dfb211
Merge pull request #586 from gzsombor/small-fixes Small fixes
push time in 3 days
PR merged instagram4j/instagram4j
This PR contains small fixes:
- Treating similar structures is sometimes helpful - you don't need to repeat the code which deals with ReelImageMedia and TimelineImageMedia, or the VideoVersionsMeta and ImageVersionsMeta.
- fixing the 'caraousel' typo
pr closed time in 3 days
startedastrada/google-drive-ocamlfuse
started time in 4 days
pull request commentinstagram4j/instagram4j
I've changed Rectangle to Meta, however, I couldn't add ImageMedia interface to ThreadImageMedia, neither to ImageCarouselItem, because both lacks a couple of methods, like getCaption,getCode,getDevice_timestamp,getFilter_type,getId,getPk,getTaken_at,getUser.
comment created time in 5 days
PR closed instagram4j/instagram4j
Already tested and it works. #570
pr closed time in 5 days
pull request commentinstagram4j/instagram4j
I create a new pull request for configuration issues.
comment created time in 5 days
Pull request review commentinstagram4j/instagram4j
+package com.github.instagram4j.instagram4j.responses.accountsearch;++import java.util.List;++import com.github.instagram4j.instagram4j.models.user.Profile;+import com.github.instagram4j.instagram4j.responses.IGResponse;++import lombok.Data;++@Data+public class AccountSearchResponse extends IGResponse {
The name should be changed to UsersSearchResponse for convention.
comment created time in 5 days
Pull request review commentinstagram4j/instagram4j
+package com.github.instagram4j.instagram4j.requests.accountsearch;++import java.util.ArrayList;+import java.util.List;+import java.util.concurrent.ExecutionException;++import com.github.instagram4j.instagram4j.IGClient;+import com.github.instagram4j.instagram4j.responses.accountsearch.AccountSearchResponse;++import lombok.Getter;++public class AccountSearch {
This functionality is already made possible thru FeedIterators so there might not be enough reason to include this.
If you want you can provide an actions method to do a search in the search actions
comment created time in 5 days
Pull request review commentinstagram4j/instagram4j
+package com.github.instagram4j.instagram4j.requests.accountsearch;++import com.github.instagram4j.instagram4j.IGClient;+import com.github.instagram4j.instagram4j.requests.IGGetRequest;+import com.github.instagram4j.instagram4j.responses.accountsearch.AccountSearchResponse;++import lombok.AllArgsConstructor;+import lombok.NonNull;++@AllArgsConstructor+public class AccountSearchRequest extends IGGetRequest<AccountSearchResponse> {
Please change name to UsersSearchRequest (path is users/search/) to fit convention.
Also please combine the two requests together into one class. One can set the rank token and page token through a constructor if needed!
comment created time in 5 days
Pull request review commentinstagram4j/instagram4j
Instagram user tagged request/response
+package com.github.instagram4j.instagram4j.requests.usertags;+++import com.github.instagram4j.instagram4j.requests.IGGetRequest;+import com.github.instagram4j.instagram4j.responses.usertags.UserTagsResponse;++import lombok.AllArgsConstructor;++@AllArgsConstructor+public class UserTagsRequest extends IGGetRequest<UserTagsResponse> {
Change name to UserTagsFeedRequest (path is usertags/.../feed)
comment created time in 5 days
Pull request review commentinstagram4j/instagram4j
Instagram user tagged request/response
+package com.github.instagram4j.instagram4j.requests.usertags;+++import com.github.instagram4j.instagram4j.requests.IGGetRequest;+import com.github.instagram4j.instagram4j.responses.usertags.UserTagsResponse;++import lombok.AllArgsConstructor;++@AllArgsConstructor+public class UserTagsRequest extends IGGetRequest<UserTagsResponse> {
This seems to be a feed request which might have pagination (a next max id in the response). If so, please make this a paginated request and have a paginated response.
Examples are here: FeedTimelineRequest FeedTimelineResponse
comment created time in 5 days
Pull request review commentinstagram4j/instagram4j
Instagram user tagged request/response
+package com.github.instagram4j.instagram4j.responses.usertags;++import java.util.List;++import com.github.instagram4j.instagram4j.models.media.Media;+import com.github.instagram4j.instagram4j.responses.IGResponse;++import lombok.Data;++@Data+public class UserTagsResponse extends IGResponse {
Change response to UserTagsFeedResponse for convention
comment created time in 5 days
Pull request review commentinstagram4j/instagram4j
+package com.github.instagram4j.instagram4j.requests.users;++import com.github.instagram4j.instagram4j.requests.IGGetRequest;+import com.github.instagram4j.instagram4j.responses.users.UsersBlockedResponse;++public class UsersBlockedRequest extends IGGetRequest<UsersBlockedResponse> {
Hi sorry to nitpick but naming convention for request should follow similarly to the request path + Request appended at the end.
So this would be UsersBlockedListRequest (patrh is /users/blocked_list/
comment created time in 5 days
Pull request review commentinstagram4j/instagram4j
+package com.github.instagram4j.instagram4j.responses.users;++import java.util.List;++import com.github.instagram4j.instagram4j.models.IGBaseModel;+import com.github.instagram4j.instagram4j.responses.IGResponse;+import lombok.Data;++@Data+public class UsersBlockedResponse extends IGResponse {
Same as above. Should match the request but has Response at the end instead.
comment created time in 5 days
Pull request review commentinstagram4j/instagram4j
+package com.github.instagram4j.instagram4j.models.media;++public interface Rectangle {
I think Meta instead of rectangle may be a more fitting name since it used for the Image/Video Meta.
comment created time in 5 days
PR closed instagram4j/instagram4j
Adding slf4j-nop will remove the "Failed to load class org.slf4j.impl.StaticLoggerBinder" warning message at the start.
pr closed time in 6 days
pull request commentinstagram4j/instagram4j
Added slf4j-nop to remove warning message
Hi, I've decided to close the PR. From the SLF4J manual, libraries should only build against the slf4j api. By default, slf4j api will fallback on a no-op operation. If the end user/dev wants the no-op operation without the warning message when packaging final application then they might choose slf4j-noop to get rid of the warning message (or any other binding for logging).
Authors of widely-distributed components and libraries may code against the SLF4J interface in order to avoid imposing an logging framework on their end-user. Thus, the end-user may choose the desired logging framework at deployment time by inserting the corresponding slf4j binding on the classpath, which may be changed later by replacing an existing binding with another on the class path and restarting the application. This approach has proven to be simple and very robust.
While I cannot accept your PR, I appreciate you opening one and hope you decide to contribute in the near future!
comment created time in 6 days
push eventinstagram4j/instagram4j
commit sha 41172a09d20fe498cae8997bbc3edd0e36e944a8
fix: media share field name
commit sha b491daa700d38a7dc13725400cff8012723d5d79
fix: release pipeline
push time in 6 days
issue commentinstagram4j/instagram4j
yes it is possible, I made the pr to add it #593
comment created time in 7 days
issue commentinstagram4j/instagram4j
Instagram user tagged feed request
yes it is possible, I made the pr to add it #595
comment created time in 7 days